diff options
Diffstat (limited to 'autotests/kconfig_compiler/test10.h.ref')
-rw-r--r-- | autotests/kconfig_compiler/test10.h.ref | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/autotests/kconfig_compiler/test10.h.ref b/autotests/kconfig_compiler/test10.h.ref index 82bbab84..a06bd162 100644 --- a/autotests/kconfig_compiler/test10.h.ref +++ b/autotests/kconfig_compiler/test10.h.ref @@ -24,6 +24,15 @@ class Test10 : public KConfigSkeleton } /** + Is foo bar Immutable + */ + static + bool isFooBarImmutable() + { + return self()->isImmutable( QStringLiteral( "FooBar" ) ); + } + + /** Get bar foo */ static @@ -32,6 +41,15 @@ class Test10 : public KConfigSkeleton return self()->mBarFoo; } + /** + Is bar foo Immutable + */ + static + bool isBarFooImmutable() + { + return self()->isImmutable( QStringLiteral( "BarFoo" ) ); + } + protected: Test10(); friend class Test10Helper; |