summaryrefslogtreecommitdiff
path: root/libopie2/opiesecurity/multiauthconfigwidget.h
Unidiff
Diffstat (limited to 'libopie2/opiesecurity/multiauthconfigwidget.h') (more/less context) (show whitespace changes)
-rw-r--r--libopie2/opiesecurity/multiauthconfigwidget.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/libopie2/opiesecurity/multiauthconfigwidget.h b/libopie2/opiesecurity/multiauthconfigwidget.h
index cd6f047..2ed8fc0 100644
--- a/libopie2/opiesecurity/multiauthconfigwidget.h
+++ b/libopie2/opiesecurity/multiauthconfigwidget.h
@@ -34,12 +34,15 @@
34#ifndef MULTIAUTHCONFIGWIDGET_H 34#ifndef MULTIAUTHCONFIGWIDGET_H
35#define MULTIAUTHCONFIGWIDGET_H 35#define MULTIAUTHCONFIGWIDGET_H
36 36
37#include <qwidget.h> 37#include <qwidget.h>
38#include <qobject.h> 38#include <qobject.h>
39 39
40namespace Opie {
41namespace Security {
42
40/// Base class of all Opie multiauth config widgets 43/// Base class of all Opie multiauth config widgets
41/** 44/**
42 * A base class for all Opie Multiauth Config Widgets. 45 * A base class for all Opie Multiauth Config Widgets.
43 * This will let a Opie multiauth plugin to add the possibility of configuration. 46 * This will let a Opie multiauth plugin to add the possibility of configuration.
44 * Plugins need to inherit from this class and need to implement 47 * Plugins need to inherit from this class and need to implement
45 * the pure virtual method to control configuration. 48 * the pure virtual method to control configuration.
@@ -60,9 +63,16 @@ class MultiauthConfigWidget : public QWidget {
60 /// Method to reimplement, supposed to save the plugin configuration 63 /// Method to reimplement, supposed to save the plugin configuration
61 /** 64 /**
62 * Plugins need to reimplement this in the config widget 65 * Plugins need to reimplement this in the config widget
63 * Used when the config dialog is closed to write config stuff 66 * Used when the config dialog is closed to write config stuff
64 */ 67 */
65 virtual void writeConfig() = 0; 68 virtual void writeConfig() = 0;
69
70 private:
71 struct Private;
72 Private *d;
66}; 73};
67 74
75}
76}
77
68#endif // MULTIAUTHCONFIGWIDGET_H 78#endif // MULTIAUTHCONFIGWIDGET_H