kdelibs/kdeui/tests/kconfig_compiler/myprefs.h

13 lines
187 B
C
Raw Normal View History

2014-11-13 01:04:59 +02:00
#ifndef MYPREFS_H
#define MYPREFS_H
#include <kconfigskeleton.h>
class MyPrefs : public KConfigSkeleton
{
public:
MyPrefs( const QString &a ) : KConfigSkeleton( a ) {}
};
#endif