comparison ui/certificatediffdialog.h @ 1255:2a1aa9df8f11

(issue133) Improve API documentation
author Andre Heinecke <andre.heinecke@intevation.de>
date Thu, 25 Sep 2014 17:58:12 +0200
parents 8728ae882b6a
children
comparison
equal deleted inserted replaced
1254:6d840341bc25 1255:2a1aa9df8f11
16 * @brief The dialog to show the changes made in the certificate list. 16 * @brief The dialog to show the changes made in the certificate list.
17 */ 17 */
18 18
19 class AdministratorWindow; 19 class AdministratorWindow;
20 20
21 /** @brief Specialized dialog for the differences in two certificate lists
22 *
23 * When certificates are added or removed from one list to the next
24 * this dialog is intended to show the differences between the old and
25 * the new list.
26 */
21 class CertificateDiffDialog : public QDialog 27 class CertificateDiffDialog : public QDialog
22 { 28 {
23 Q_OBJECT 29 Q_OBJECT
24 public: 30 public:
25 /** @brief Create a dialog showing the changes made in the certificate list. 31 /** @brief Create a dialog showing the changes made in the certificate list.
32 *
33 * This class knows enough about the parent that it uses the parent's
34 * accessor functions to get at the information it should present.
35 *
36 * @param[in] parent A reference to the AdministratorWindow
26 */ 37 */
27 CertificateDiffDialog(AdministratorWindow *parent); 38 CertificateDiffDialog(AdministratorWindow *parent);
28 39
29 private: 40 private:
41 /** @brief Create the UI elements. */
30 void setupGUI(); 42 void setupGUI();
31 43
32 AdministratorWindow *mAdminWindow; 44 AdministratorWindow *mAdminWindow;
33 45
34 private slots: 46 private slots:

http://wald.intevation.org/projects/trustbridge/