16 lines
280 B
C
16 lines
280 B
C
|
#ifndef MAINWINDOW_H
|
||
|
#define MAINWINDOW_H
|
||
|
|
||
|
#include <QMainWindow>
|
||
|
|
||
|
//^#===================================================== MainWindow
|
||
|
class MainWindow : public QMainWindow{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
MainWindow(QWidget *parent = nullptr);
|
||
|
~MainWindow();
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // MAINWINDOW_H
|