confirm daemon running on exit

This commit is contained in:
Jaquee
2017-03-01 22:03:50 +01:00
parent 988e299290
commit bce496b8d1
6 changed files with 76 additions and 4 deletions

18
MainApp.h Normal file
View File

@@ -0,0 +1,18 @@
#ifndef MAINAPP_H
#define MAINAPP_H
#include <QApplication>
class MainApp : public QApplication
{
Q_OBJECT
public:
MainApp(int &argc, char** argv) : QApplication(argc, argv) {};
private:
bool event(QEvent *e);
signals:
void closing();
};
#endif // MAINAPP_H