From 5179bca73955373e087d6b51edcabf038c964ac8 Mon Sep 17 00:00:00 2001 From: Marcelo Lira Date: Mon, 20 Sep 2010 11:36:45 -0300 Subject: Anonymous enums now supported. --- typesystem.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'typesystem.h') 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 -- cgit v1.2.3