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
00024 namespace KPIM {
00025
00030 class ConfigManager : public QObject {
00031 Q_OBJECT
00032 public:
00034 virtual void commit() = 0;
00036 virtual void rollback() = 0;
00037
00039 virtual bool hasPendingChanges() const = 0;
00040
00041 signals:
00043 void changed();
00044
00045 protected:
00046 ConfigManager( QObject * parent=0, const char * name=0 );
00047 virtual ~ConfigManager();
00048 };
00049
00050 }
00051
00052 #endif // _KMAIL_CONFIGMANAGER_H_
This file is part of the documentation for libkdepim Library Version 3.3.2.