diff options
author | Kent Hansen <khansen@trolltech.com> | 2009-06-12 11:03:59 (GMT) |
---|---|---|
committer | Kent Hansen <khansen@trolltech.com> | 2009-06-12 11:05:57 (GMT) |
commit | 643e58248a22e54134c99d2ba70371f7f57b4040 (patch) | |
tree | 022717cfd3898003897f80ccb8acfce49a1a2f94 /src/scripttools/debugging/qscriptdebuggerobjectsnapshotdelta_p.h | |
parent | 6a408b6c6d00a76c74a4d612d85996d7ad3f03ba (diff) | |
download | Qt-643e58248a22e54134c99d2ba70371f7f57b4040.zip Qt-643e58248a22e54134c99d2ba70371f7f57b4040.tar.gz Qt-643e58248a22e54134c99d2ba70371f7f57b4040.tar.bz2 |
add streaming ops for scriptdebugger object deltas
Needed for remote debugging.
Diffstat (limited to 'src/scripttools/debugging/qscriptdebuggerobjectsnapshotdelta_p.h')
-rw-r--r-- | src/scripttools/debugging/qscriptdebuggerobjectsnapshotdelta_p.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/scripttools/debugging/qscriptdebuggerobjectsnapshotdelta_p.h b/src/scripttools/debugging/qscriptdebuggerobjectsnapshotdelta_p.h index e3ec541..546ed7f 100644 --- a/src/scripttools/debugging/qscriptdebuggerobjectsnapshotdelta_p.h +++ b/src/scripttools/debugging/qscriptdebuggerobjectsnapshotdelta_p.h @@ -60,6 +60,8 @@ QT_BEGIN_NAMESPACE +class QDataStream; + class Q_AUTOTEST_EXPORT QScriptDebuggerObjectSnapshotDelta { public: @@ -68,6 +70,9 @@ public: QScriptDebuggerValuePropertyList addedProperties; }; +Q_AUTOTEST_EXPORT QDataStream &operator<<(QDataStream &, const QScriptDebuggerObjectSnapshotDelta &); +Q_AUTOTEST_EXPORT QDataStream &operator>>(QDataStream &, QScriptDebuggerObjectSnapshotDelta &); + QT_END_NAMESPACE #endif |