summaryrefslogtreecommitdiffstats
path: root/src/pwgui/pwgui.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/pwgui/pwgui.h')
-rw-r--r--src/pwgui/pwgui.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/pwgui/pwgui.h b/src/pwgui/pwgui.h
new file mode 100644
index 0000000..3e56ec8
--- /dev/null
+++ b/src/pwgui/pwgui.h
@@ -0,0 +1,31 @@
+#ifndef AUTHENTICATION_H
+#define AUTHENTICATION_H
+
+#include <QMainWindow>
+#include <QDebug>
+#include <QTimer>
+
+namespace Ui {
+class PwGui;
+}
+
+class QTimer;
+
+class PwGui : public QMainWindow
+{
+ Q_OBJECT
+
+public:
+ explicit PwGui(QWidget *parent = 0);
+ ~PwGui();
+
+private slots:
+ void on_checkStatusTimer();
+
+private:
+ Ui::PwGui *ui;
+ void initializeUI();
+ QTimer* checkStatusTimer;
+};
+
+#endif // AUTHENTICATION_H