summaryrefslogtreecommitdiffstats
path: root/src/declarative/debugger/qdeclarativeenginedebug_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/declarative/debugger/qdeclarativeenginedebug_p.h')
-rw-r--r--src/declarative/debugger/qdeclarativeenginedebug_p.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/declarative/debugger/qdeclarativeenginedebug_p.h b/src/declarative/debugger/qdeclarativeenginedebug_p.h
index 685ea5e2..77c12e63 100644
--- a/src/declarative/debugger/qdeclarativeenginedebug_p.h
+++ b/src/declarative/debugger/qdeclarativeenginedebug_p.h
@@ -244,12 +244,14 @@ public:
QDeclarativeDebugObjectReference &operator=(const QDeclarativeDebugObjectReference &);
int debugId() const;
+ int parentId() const;
QString className() const;
QString idString() const;
QString name() const;
QDeclarativeDebugFileReference source() const;
int contextDebugId() const;
+ bool needsMoreData() const;
QList<QDeclarativeDebugPropertyReference> properties() const;
QList<QDeclarativeDebugObjectReference> children() const;
@@ -260,11 +262,13 @@ public:
private:
friend class QDeclarativeEngineDebugPrivate;
int m_debugId;
+ int m_parentId;
QString m_class;
QString m_idString;
QString m_name;
QDeclarativeDebugFileReference m_source;
int m_contextDebugId;
+ bool m_needsMoreData;
QList<QDeclarativeDebugPropertyReference> m_properties;
QList<QDeclarativeDebugObjectReference> m_children;
};