summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlcontext.h
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2009-07-13 05:21:42 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2009-07-13 05:21:42 (GMT)
commit29dd542d079d1b2bac37357d8ea18e5622cc12dc (patch)
treed4525cd54f5faf900374904d37d6e5fc1cbacd08 /src/declarative/qml/qmlcontext.h
parentd5e372425698c6a87e86743114e4b8d28d5d86eb (diff)
downloadQt-29dd542d079d1b2bac37357d8ea18e5622cc12dc.zip
Qt-29dd542d079d1b2bac37357d8ea18e5622cc12dc.tar.gz
Qt-29dd542d079d1b2bac37357d8ea18e5622cc12dc.tar.bz2
Start moving debugger out of process
Diffstat (limited to 'src/declarative/qml/qmlcontext.h')
-rw-r--r--src/declarative/qml/qmlcontext.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/declarative/qml/qmlcontext.h b/src/declarative/qml/qmlcontext.h
index f5858cb..a0bb8e5 100644
--- a/src/declarative/qml/qmlcontext.h
+++ b/src/declarative/qml/qmlcontext.h
@@ -62,6 +62,7 @@ class Q_DECLARATIVE_EXPORT QmlContext : public QObject
Q_DECLARE_PRIVATE(QmlContext)
public:
+ QmlContext(QmlEngine *parent, QObject *objParent=0);
QmlContext(QmlContext *parent, QObject *objParent=0);
virtual ~QmlContext();
@@ -86,6 +87,7 @@ private Q_SLOTS:
void objectDestroyed(QObject *);
private:
+ friend class QmlVME;
friend class QmlEngine;
friend class QmlEnginePrivate;
friend class QmlExpression;
@@ -97,7 +99,8 @@ private:
friend class QmlScriptPrivate;
friend class QmlBoundSignalProxy;
friend class QmlSimpleDeclarativeData;
- QmlContext(QmlEngine *);
+ QmlContext(QmlContext *parent, QObject *objParent, bool);
+ QmlContext(QmlEngine *, bool);
};
QT_END_NAMESPACE