aboutsummaryrefslogtreecommitdiffstats
path: root/typesystem.h
diff options
context:
space:
mode:
Diffstat (limited to 'typesystem.h')
-rw-r--r--typesystem.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/typesystem.h b/typesystem.h
index 948479d81..682f068e3 100644
--- a/typesystem.h
+++ b/typesystem.h
@@ -1265,6 +1265,15 @@ public:
m_forceInteger = force;
}
+ bool isAnonymous() const
+ {
+ return m_anonymous;
+ }
+ void setAnonymous(bool anonymous)
+ {
+ m_anonymous = anonymous;
+ }
+
private:
QString m_packageName;
QString m_qualifier;
@@ -1280,6 +1289,7 @@ private:
bool m_extensible;
bool m_forceInteger;
+ bool m_anonymous;
};
class APIEXTRACTOR_API EnumValueTypeEntry : public TypeEntry