ksimpleconfig.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
#ifndef _KSIMPLECONFIG_H
00022
#define _KSIMPLECONFIG_H
00023
00024
#include "kconfig.h"
00025
00026
class KSimpleConfigPrivate;
00027
00041 class KDECORE_EXPORT KSimpleConfig :
public KConfig
00042 {
00043 Q_OBJECT
00044
00045
public:
00056 KSimpleConfig(
const QString &fileName,
bool bReadOnly =
false);
00057
00058 KSimpleConfig(
KConfigBackEnd *backEnd,
bool bReadOnly =
false);
00059
00065
virtual ~KSimpleConfig();
00066
00067
virtual void sync();
00068
00069
private:
00070
00071
00072 KSimpleConfig(
const KSimpleConfig& );
00073 KSimpleConfig& operator= (
const KSimpleConfig& rConfig );
00074
00075
protected:
00076
virtual void virtual_hook(
int id,
void* data );
00077
private:
00078 KSimpleConfigPrivate *d;
00079 };
00080
00081
#endif
This file is part of the documentation for kdecore Library Version 3.4.0.