Files
RedBear-OS/local/recipes/kde/kf6-kconfig/source/autotests/kconfig_compiler/myprefs.h
T
2026-04-14 10:51:06 +01:00

16 lines
198 B
C++

#ifndef MYPREFS_H
#define MYPREFS_H
#include <kconfigskeleton.h>
class MyPrefs : public KConfigSkeleton
{
public:
MyPrefs(const QString &a)
: KConfigSkeleton(a)
{
}
};
#endif