mirror of
https://github.com/tnodir/fort
synced 2024-11-15 15:55:45 +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
|