File indexing completed on 2024-05-12 03:54:20

0001 #ifndef MYPREFS_H
0002 #define MYPREFS_H
0003 
0004 #include <kconfigskeleton.h>
0005 
0006 class MyPrefs : public KConfigSkeleton
0007 {
0008 public:
0009     MyPrefs(const QString &a)
0010         : KConfigSkeleton(a)
0011     {
0012     }
0013 };
0014 
0015 #endif