diff options
Diffstat (limited to '')
-rw-r--r-- | src/ui/WaitingDialog.h | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/src/ui/WaitingDialog.h b/src/ui/WaitingDialog.h index 274447a8..1bb6a22b 100644 --- a/src/ui/WaitingDialog.h +++ b/src/ui/WaitingDialog.h @@ -33,16 +33,20 @@ namespace GpgFrontend::UI { +/** + * @brief + * + */ class WaitingDialog : public QDialog { Q_OBJECT public: + /** + * @brief Construct a new Waiting Dialog object + * + * @param title + * @param parent + */ WaitingDialog(const QString& title, QWidget* parent); - - public slots: - - private slots: - - private: }; } // namespace GpgFrontend::UI |