Warning, /frameworks/kconfig/autotests/kconfig_compiler/test10.h.ref is written in an unsupported language. File is not indexed.
0001 // This file is generated by kconfig_compiler_kf6 from test10.kcfg.
0002 // All changes you do to this file will be lost.
0003 #ifndef TEST10_H
0004 #define TEST10_H
0005
0006 #include <kconfigskeleton.h>
0007 #include <QCoreApplication>
0008 #include <QDebug>
0009
0010 class Test10 : public KConfigSkeleton
0011 {
0012 public:
0013
0014 static Test10 *self();
0015 ~Test10() override;
0016
0017 /**
0018 Get foo bar
0019 */
0020 static
0021 QUrl fooBar()
0022 {
0023 return self()->mFooBar;
0024 }
0025
0026 /**
0027 Is foo bar Immutable
0028 */
0029 static
0030 bool isFooBarImmutable()
0031 {
0032 return self()->isImmutable( QStringLiteral( "FooBar" ) );
0033 }
0034
0035 /**
0036 Get bar foo
0037 */
0038 static
0039 QList<QUrl> barFoo()
0040 {
0041 return self()->mBarFoo;
0042 }
0043
0044 /**
0045 Is bar foo Immutable
0046 */
0047 static
0048 bool isBarFooImmutable()
0049 {
0050 return self()->isImmutable( QStringLiteral( "BarFoo" ) );
0051 }
0052
0053 protected:
0054 Test10();
0055 friend class Test10Helper;
0056
0057
0058 // Foo
0059 QUrl mFooBar;
0060 QList<QUrl> mBarFoo;
0061
0062 private:
0063 };
0064
0065 #endif
0066