aboutsummaryrefslogtreecommitdiffstats
path: root/typedatabase.h
diff options
context:
space:
mode:
authorRenato Filho <renato.filho@openbossa.org>2010-05-25 16:13:19 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-09 19:10:03 -0300
commit6ddb2e91990b119017819c6290ca6de6c6b6ea21 (patch)
tree4fd524331337d4ea6de141cc7b36c753a2abb570 /typedatabase.h
parent73d7cfa75642672e4fe2ccd52eae872a16953dba (diff)
Implemented support to flag "since" on typesystem.
With this flag you can specify after which version the tag became valid.
Diffstat (limited to 'typedatabase.h')
-rw-r--r--typedatabase.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/typedatabase.h b/typedatabase.h
index 10be28d15..94de75565 100644
--- a/typedatabase.h
+++ b/typedatabase.h
@@ -168,6 +168,18 @@ public:
bool parseFile(const QString &filename, bool generate = true);
bool parseFile(QIODevice* device, bool generate = true);
+ double apiVersion() const
+ {
+ return m_apiVersion;
+ }
+
+ void setApiVersion(double version)
+ {
+ m_apiVersion = version;
+ }
+
+ bool supportedApiVersion(double version) const;
+
private:
bool m_suppressWarnings;
TypeEntryHash m_entries;
@@ -185,6 +197,8 @@ private:
QList<TypeRejection> m_rejections;
QStringList m_rebuildClasses;
+
+ double m_apiVersion;
};
#endif