summaryrefslogtreecommitdiff
path: root/core/pim/today/configwidget.h
blob: f449db4c736edf75f5d6383b10add62fedaa7600 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

#ifndef CONFIG_WIDGET_H
#define CONFIG_WIDGET_H



class ConfigWidget : public QWidget {

public:

    ConfigWidget(  QWidget *parent,  const char *name ) : QWidget( parent,  name ) {};
    virtual ~ConfigWidget() {};

    virtual void  writeConfig() = 0;
};

#endif