configmanager.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef _KMAIL_CONFIGMANAGER_H_
00018 #define _KMAIL_CONFIGMANAGER_H_
00019
00020 #include <qobject.h>
00021
00022 class KMKernel;
00023
00028 class ConfigManager : public QObject {
00029 Q_OBJECT
00030 public:
00032 virtual void commit() = 0;
00034 virtual void rollback() = 0;
00035
00037 virtual bool hasPendingChanges() const = 0;
00038
00039 signals:
00041 void changed();
00042
00043 protected:
00044 ConfigManager( QObject * parent=0, const char * name=0 );
00045 virtual ~ConfigManager();
00046 };
00047
00048
00049 #endif // _KMAIL_CONFIGMANAGER_H_
This file is part of the documentation for kmail Library Version 3.2.2.