summaryrefslogtreecommitdiffstats
path: root/passworddialog.h
diff options
context:
space:
mode:
authorStefan Suhren <suhren.stefan@fh-swf.de>2015-08-31 21:52:56 +0200
committerStefan Suhren <suhren.stefan@fh-swf.de>2015-08-31 21:52:56 +0200
commit0486c639b945726b9272917f0224a7a42e958740 (patch)
tree00ac64b33c39c59a49a0348f6d42098edaf0462f /passworddialog.h
parent063ebad233e79f6ac8689f1209105a8564da4832 (diff)
downloadsrc-0486c639b945726b9272917f0224a7a42e958740.tar.gz
src-0486c639b945726b9272917f0224a7a42e958740.zip
Füge PasswordDialog hinzu und baue erste UI
Diffstat (limited to 'passworddialog.h')
-rw-r--r--passworddialog.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/passworddialog.h b/passworddialog.h
new file mode 100644
index 0000000..3db9b1f
--- /dev/null
+++ b/passworddialog.h
@@ -0,0 +1,22 @@
+#ifndef PASSWORDDIALOG_H
+#define PASSWORDDIALOG_H
+
+#include <QDialog>
+
+namespace Ui {
+class PasswordDialog;
+}
+
+class PasswordDialog : public QDialog
+{
+ Q_OBJECT
+
+public:
+ explicit PasswordDialog(QWidget *parent = 0);
+ ~PasswordDialog();
+
+private:
+ Ui::PasswordDialog *ui;
+};
+
+#endif // PASSWORDDIALOG_H