diff options
| author | Stefan Suhren <suhren.stefan@fh-swf.de> | 2015-08-31 21:52:56 +0200 |
|---|---|---|
| committer | Stefan Suhren <suhren.stefan@fh-swf.de> | 2015-08-31 21:52:56 +0200 |
| commit | 0486c639b945726b9272917f0224a7a42e958740 (patch) | |
| tree | 00ac64b33c39c59a49a0348f6d42098edaf0462f /passworddialog.h | |
| parent | 063ebad233e79f6ac8689f1209105a8564da4832 (diff) | |
| download | src-0486c639b945726b9272917f0224a7a42e958740.tar.gz src-0486c639b945726b9272917f0224a7a42e958740.zip | |
Füge PasswordDialog hinzu und baue erste UI
Diffstat (limited to 'passworddialog.h')
| -rw-r--r-- | passworddialog.h | 22 |
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 |
