Mercurial > trustbridge
view ui/listupdatedialog.h @ 75:ec0f4efefb7b
Add profiling options for all C/CXX code if requested
author | Andre Heinecke <aheinecke@intevation.de> |
---|---|
date | Wed, 19 Mar 2014 15:36:35 +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