initial commit

This commit is contained in:
2019-08-03 14:52:11 +02:00
commit 2edae6b463
11 changed files with 769 additions and 0 deletions

29
mainwindow.h Normal file
View File

@@ -0,0 +1,29 @@
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QSettings>
namespace Ui {
class MainWindow;
}
namespace shutdown2 {
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = nullptr);
~MainWindow() override;
private:
Ui::MainWindow *ui;
QSettings* mSettings = nullptr;
};
}
#endif // MAINWINDOW_H