mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 19:02:48 +00:00
12 lines
187 B
C++
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
|