cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
67 lines
1004 B
Plaintext
67 lines
1004 B
Plaintext
// This file is generated by kconfig_compiler_kf6 from test10.kcfg.
|
|
// All changes you do to this file will be lost.
|
|
#ifndef TEST10_H
|
|
#define TEST10_H
|
|
|
|
#include <kconfigskeleton.h>
|
|
#include <QCoreApplication>
|
|
#include <QDebug>
|
|
|
|
class Test10 : public KConfigSkeleton
|
|
{
|
|
public:
|
|
|
|
static Test10 *self();
|
|
~Test10() override;
|
|
|
|
/**
|
|
Get foo bar
|
|
*/
|
|
static
|
|
QUrl fooBar()
|
|
{
|
|
return self()->mFooBar;
|
|
}
|
|
|
|
/**
|
|
Is foo bar Immutable
|
|
*/
|
|
static
|
|
bool isFooBarImmutable()
|
|
{
|
|
return self()->isImmutable( QStringLiteral( "FooBar" ) );
|
|
}
|
|
|
|
/**
|
|
Get bar foo
|
|
*/
|
|
static
|
|
QList<QUrl> barFoo()
|
|
{
|
|
return self()->mBarFoo;
|
|
}
|
|
|
|
/**
|
|
Is bar foo Immutable
|
|
*/
|
|
static
|
|
bool isBarFooImmutable()
|
|
{
|
|
return self()->isImmutable( QStringLiteral( "BarFoo" ) );
|
|
}
|
|
|
|
protected:
|
|
Test10();
|
|
friend class Test10Helper;
|
|
|
|
|
|
// Foo
|
|
QUrl mFooBar;
|
|
QList<QUrl> mBarFoo;
|
|
|
|
private:
|
|
};
|
|
|
|
#endif
|
|
|