summaryrefslogtreecommitdiff
path: root/core/pim/today/todayconfigwidget.h
authorharlekin <harlekin>2002-09-22 22:29:34 (UTC)
committer harlekin <harlekin>2002-09-22 22:29:34 (UTC)
commita26d188b7b91f9bdce1e6a44c40ce874cd50abde (patch) (unidiff)
tree26a7efeca0a0778d3a96f876cb030dd414a177be /core/pim/today/todayconfigwidget.h
parente49230a12104b718c46a34c81b6c0e608c9d40be (diff)
downloadopie-a26d188b7b91f9bdce1e6a44c40ce874cd50abde.zip
opie-a26d188b7b91f9bdce1e6a44c40ce874cd50abde.tar.gz
opie-a26d188b7b91f9bdce1e6a44c40ce874cd50abde.tar.bz2
interface updates
Diffstat (limited to 'core/pim/today/todayconfigwidget.h') (more/less context) (show whitespace changes)
-rw-r--r--core/pim/today/todayconfigwidget.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/core/pim/today/todayconfigwidget.h b/core/pim/today/todayconfigwidget.h
new file mode 100644
index 0000000..48cf379
--- a/dev/null
+++ b/core/pim/today/todayconfigwidget.h
@@ -0,0 +1,21 @@
1
2#ifndef CONFIG_WIDGET_H
3#define CONFIG_WIDGET_H
4
5
6class TodayConfigWidget : public QWidget {
7
8
9public:
10
11 TodayConfigWidget( QWidget *parent, const char *name ) : QWidget( parent, name ) {} ;
12 virtual ~TodayConfigWidget() {};
13
14 /**
15 * Plugins need to reimplement this in the config widget
16 * Used when the config dialog is closed to write config stuff
17 */
18 virtual void writeConfig() = 0;
19};
20
21#endif