blob: 1efd9820ed729e18e5fbd239cc86f360ffb5986d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef MINIKDE_KSIMPLECONFIG_H
#define MINIKDE_KSIMPLECONFIG_H
#include "kconfig.h"
class KSimpleConfig : public KConfig
{
public:
KSimpleConfig( const QString &file ) : KConfig( file ) {}
};
#endif
|