diff options
| author | Stefan Suhren <suhren.stefan@fh-swf.de> | 2015-09-01 15:11:37 +0200 |
|---|---|---|
| committer | Stefan Suhren <suhren.stefan@fh-swf.de> | 2015-09-01 15:17:47 +0200 |
| commit | 00be2262fe99ce24fb6649c0056d2d5c7f862f79 (patch) | |
| tree | 2076f924aa5200fb320966b0d21be7b60feaeaa2 /publickeyimport.h | |
| parent | bab74fd38a992237410ae8475f93003e94ead135 (diff) | |
| download | src-00be2262fe99ce24fb6649c0056d2d5c7f862f79.tar.gz src-00be2262fe99ce24fb6649c0056d2d5c7f862f79.zip | |
Verbessere und vervollständige graphische Oberfläche
Diffstat (limited to 'publickeyimport.h')
| -rw-r--r-- | publickeyimport.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/publickeyimport.h b/publickeyimport.h new file mode 100644 index 0000000..ecc64c1 --- /dev/null +++ b/publickeyimport.h @@ -0,0 +1,22 @@ +#ifndef PUBLICKEYIMPORT_H +#define PUBLICKEYIMPORT_H + +#include <QWidget> + +namespace Ui { +class PublicKeyImport; +} + +class PublicKeyImport : public QWidget +{ + Q_OBJECT + +public: + explicit PublicKeyImport(QWidget *parent = 0); + ~PublicKeyImport(); + +private: + Ui::PublicKeyImport *ui; +}; + +#endif // PUBLICKEYIMPORT_H |
