mirror of
https://github.com/tnodir/fort
synced 2024-11-17 13:17:21 +00:00
21 lines
245 B
C
21 lines
245 B
C
|
#ifndef MAINWINDOW_H
|
||
|
#define MAINWINDOW_H
|
||
|
|
||
|
#include <QMainWindow>
|
||
|
|
||
|
class MainWindow : public QMainWindow
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit MainWindow(QWidget *parent = nullptr);
|
||
|
|
||
|
signals:
|
||
|
|
||
|
public slots:
|
||
|
|
||
|
protected:
|
||
|
};
|
||
|
|
||
|
#endif // MAINWINDOW_H
|