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