forked from qt-creator/qt-creator
26 lines
409 B
C
26 lines
409 B
C
|
|
// Copyright (C) 2023 The Qt Company Ltd.
|
||
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
||
|
|
|
||
|
|
#ifndef MAINWINDOW_H
|
||
|
|
#define MAINWINDOW_H
|
||
|
|
|
||
|
|
#include <QMainWindow>
|
||
|
|
|
||
|
|
namespace Ui {
|
||
|
|
class MainWindow;
|
||
|
|
}
|
||
|
|
|
||
|
|
class MainWindow : public QMainWindow
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
explicit MainWindow(QWidget *parent = nullptr);
|
||
|
|
~MainWindow();
|
||
|
|
|
||
|
|
private:
|
||
|
|
Ui::MainWindow *ui;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // MAINWINDOW_H
|