blob: 16eba805e64a63ab310b74174cf7cadc6c6a8a33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
// This file is generated by kconfig_compiler_kf5 from test12.kcfg.
// All changes you do to this file will be lost.
#ifndef TEST12_H
#define TEST12_H
#include <qglobal.h>
#include <kconfigskeleton.h>
#include <QCoreApplication>
#include <QDebug>
class Test12 : public KConfigSkeleton
{
public:
Test12( );
~Test12() override;
/**
Get RnRSource
*/
QList<QUrl> rnRSource() const
{
return mRnRSource;
}
/**
Is RnRSource Immutable
*/
bool isRnRSourceImmutable() const
{
return isImmutable( QStringLiteral( "RnRSource" ) );
}
protected:
// muon
QList<QUrl> mRnRSource;
private:
};
#endif
|