blob: 609fc546d13998dde853fb6a525729b12d47b96f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef MYPREFS_H
#define MYPREFS_H
#include <kconfigskeleton.h>
class MyPrefs : public KConfigSkeleton
{
public:
MyPrefs(const QString &a) : KConfigSkeleton(a) {}
};
#endif
|