Mercurial > trustbridge
view ui/listupdatedialog.h @ 72:7e304573ebd1
Add some testing hacks for interactive testing
author | Andre Heinecke <aheinecke@intevation.de> |
---|---|
date | Wed, 19 Mar 2014 11:33:53 +0000 |
parents | f22a99f7cb69 |
children | 1f27d6db5ee3 |
line wrap: on
line source
#ifndef LISTUPDATEDIALOG_H #define LISTUPDATEDIALOG_H #include "certificatelist.h" #include <QDialog> /** * @file listupdatedialog.h * @brief The dialog for certificate selection. */ class ListUpdateDialog : public QDialog { public: /** @brief Create a list update dialog for the listToInstall */ ListUpdateDialog(QDialog *parent, const CertificateList &listToInstall); private: CertificateList mCertificateList; void setupGUI(); }; #endif // LISTUPDATEDIALOG_H