aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlpropertycache_p.h
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@nokia.com>2012-08-28 10:49:28 +1000
committerQt by Nokia <qt-info@nokia.com>2012-08-28 04:32:48 +0200
commita47597ea986e76cb6deeaaa64b3714add4688a01 (patch)
tree8c2e5fec8faed87b8abb90356c42fd7de93ecc2b /src/qml/qml/qqmlpropertycache_p.h
parent7223f1861d3309d336123c90866665cfe2507d7f (diff)
Refactor QQmlPropertyCacheMethodArguments creation.
Change-Id: Ic7215741b26ddf0a36181cf7c7daaff095e797da Reviewed-by: Matthew Vogt <matthew.vogt@nokia.com>
Diffstat (limited to 'src/qml/qml/qqmlpropertycache_p.h')
-rw-r--r--src/qml/qml/qqmlpropertycache_p.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/qml/qml/qqmlpropertycache_p.h b/src/qml/qml/qqmlpropertycache_p.h
index ad94ed4688..99fab4323c 100644
--- a/src/qml/qml/qqmlpropertycache_p.h
+++ b/src/qml/qml/qqmlpropertycache_p.h
@@ -238,6 +238,7 @@ private:
bool notFullyResolved() const { return flags & NotFullyResolved; }
};
+class QQmlPropertyCacheMethodArguments;
class Q_QML_PRIVATE_EXPORT QQmlPropertyCache : public QQmlRefCount, public QQmlCleanup
{
public:
@@ -345,6 +346,8 @@ private:
// Implemented in v8/qv8qobjectwrapper.cpp
v8::Local<v8::Object> newQObject(QObject *, QV8Engine *);
+ QQmlPropertyCacheMethodArguments *createArgumentsObject(int count,
+ const QList<QByteArray> &names = QList<QByteArray>());
QQmlPropertyData *signal(int, QQmlPropertyCache **) const;
typedef QVector<QQmlPropertyData> IndexCache;