cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
16 lines
198 B
C++
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
|