kdelibs/kdeui/tests/kconfig_compiler/myprefs.h
2014-11-13 01:04:59 +02:00

12 lines
187 B
C++

#ifndef MYPREFS_H
#define MYPREFS_H
#include <kconfigskeleton.h>
class MyPrefs : public KConfigSkeleton
{
public:
MyPrefs( const QString &a ) : KConfigSkeleton( a ) {}
};
#endif