aboutsummaryrefslogtreecommitdiff
path: root/autotests/kconfig_compiler/test10.h.ref
diff options
context:
space:
mode:
Diffstat (limited to 'autotests/kconfig_compiler/test10.h.ref')
-rw-r--r--autotests/kconfig_compiler/test10.h.ref18
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;