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