diff options
author | Kai Koehne <kai.koehne@nokia.com> | 2009-08-24 07:53:15 (GMT) |
---|---|---|
committer | Kai Koehne <kai.koehne@nokia.com> | 2009-08-24 07:58:09 (GMT) |
commit | 40c12237b506bda373f5218c13e356de025c3716 (patch) | |
tree | a2a47b3af244374aaa4923ffa3541c72ed15f9c6 /src/declarative/qml/qmldom.h | |
parent | 494d2d9041b7277f6d22146593ff01c7c7f7021b (diff) | |
download | Qt-40c12237b506bda373f5218c13e356de025c3716.zip Qt-40c12237b506bda373f5218c13e356de025c3716.tar.gz Qt-40c12237b506bda373f5218c13e356de025c3716.tar.bz2 |
Expose type library information in QmlDomObject
New QmlDomObject::objectTypeMajorVersion && objectTypeMinorVersion
accessors expose import library information.
Diffstat (limited to 'src/declarative/qml/qmldom.h')
-rw-r--r-- | src/declarative/qml/qmldom.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/declarative/qml/qmldom.h b/src/declarative/qml/qmldom.h index 32ed2da..60e7b38 100644 --- a/src/declarative/qml/qmldom.h +++ b/src/declarative/qml/qmldom.h @@ -152,6 +152,9 @@ public: QByteArray objectType() const; QByteArray objectClassName() const; + int objectTypeMajorVersion() const; + int objectTypeMinorVersion() const; + QString objectId() const; void setObjectId(const QByteArray &); |