aboutsummaryrefslogtreecommitdiffstats
path: root/typedatabase.cpp
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.cpp
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.cpp')
-rw-r--r--typedatabase.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/typedatabase.cpp b/typedatabase.cpp
index c4266a83e..debc97865 100644
--- a/typedatabase.cpp
+++ b/typedatabase.cpp
@@ -396,3 +396,8 @@ NamespaceTypeEntry* TypeDatabase::findNamespaceType(const QString& name) const
return 0;
}
+bool TypeDatabase::supportedApiVersion(double version) const
+{
+ return version <= m_apiVersion;
+}
+