aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/meson/mesonsampleproject/mesonsampleproject.h
blob: 89968bc1900182b9694cd5a8a5370746f720cc7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (C) 2020 Alexis Jeandet.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
#ifndef MESONSAMPLEPROJECT_H
#define MESONSAMPLEPROJECT_H

#include <QMainWindow>

QT_BEGIN_NAMESPACE
namespace Ui { class MesonSampleProject; }
QT_END_NAMESPACE

class MesonSampleProject : public QMainWindow
{
    Q_OBJECT

public:
    MesonSampleProject(QWidget *parent = nullptr);
    ~MesonSampleProject();

private:
    Ui::MesonSampleProject *ui;
};
#endif // MESONSAMPLEPROJECT_H