20 #ifndef _TDECONFIGRAWBACKEND_H 21 #define _TDECONFIGRAWBACKEND_H 25 #include <tdeconfigbackend.h> 26 #include <ksimpleconfig.h> 29 class TDEConfigRawBackEnd :
public TDEConfigINIBackEnd
32 TDEConfigRawBackEnd(TDEConfigBase *_config,
int fd);
33 ~TDEConfigRawBackEnd();
35 bool parseConfigFiles();
37 void sync(
bool bMerge =
true);
44 class TDEConfigRawBackEndPrivate;
45 TDEConfigRawBackEndPrivate *d;
48 class KRawConfig :
public KSimpleConfig
53 KRawConfig(
int fd,
bool readOnly)
54 : KSimpleConfig(new TDEConfigRawBackEnd(this, fd), readOnly) {}