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