diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-04-23 04:26:37 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-04-23 04:26:37 (GMT) |
commit | fbc927101b8b01b30d5b776e79511165eb1bf2e1 (patch) | |
tree | 88bb56177df81c7969688ccbbdd712accaac6d92 /src/declarative/qml/qmlmetaproperty_p.h | |
parent | ccb43676bbe2f787eec90812e7f5af06f1bc3857 (diff) | |
download | Qt-fbc927101b8b01b30d5b776e79511165eb1bf2e1.zip Qt-fbc927101b8b01b30d5b776e79511165eb1bf2e1.tar.gz Qt-fbc927101b8b01b30d5b776e79511165eb1bf2e1.tar.bz2 |
Split up QmlMetaProperty::write() method
Diffstat (limited to 'src/declarative/qml/qmlmetaproperty_p.h')
-rw-r--r-- | src/declarative/qml/qmlmetaproperty_p.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/declarative/qml/qmlmetaproperty_p.h b/src/declarative/qml/qmlmetaproperty_p.h index 5c13f5e..1ea38e9 100644 --- a/src/declarative/qml/qmlmetaproperty_p.h +++ b/src/declarative/qml/qmlmetaproperty_p.h @@ -42,6 +42,8 @@ #ifndef QMLMETAPROPERTY_P_H #define QMLMETAPROPERTY_P_H +#include "qmlmetaproperty.h" + class QmlContext; class QmlMetaPropertyPrivate { @@ -69,6 +71,12 @@ public: QObject *attachedObject() const; void findSignalInt(QObject *, const QString &); + + int propertyType() const; + QmlMetaProperty::PropertyCategory propertyCategory() const; + + void writeSignalProperty(const QVariant &); + void writeValueProperty(const QVariant &); }; #endif // QMLMETAPROPERTY_P_H |