Qt 4.8
Classes | Functions
qscriptdebuggerobjectsnapshotdelta_p.h File Reference
#include <QtCore/qobjectdefs.h>
#include <QtCore/qstringlist.h>
#include "qscriptdebuggervalueproperty_p.h"

Go to the source code of this file.

Classes

class  QScriptDebuggerObjectSnapshotDelta
 

Functions

Q_AUTOTEST_EXPORT QDataStreamoperator<< (QDataStream &, const QScriptDebuggerObjectSnapshotDelta &)
 
Q_AUTOTEST_EXPORT QDataStreamoperator>> (QDataStream &, QScriptDebuggerObjectSnapshotDelta &)
 

Function Documentation

◆ operator<<()

Definition at line 225 of file qscriptdebuggervalueproperty.cpp.

226 {
227  out << delta.removedProperties;
228  out << delta.changedProperties;
229  out << delta.addedProperties;
230  return out;
231 }

◆ operator>>()

Definition at line 233 of file qscriptdebuggervalueproperty.cpp.

234 {
235  in >> delta.removedProperties;
236  in >> delta.changedProperties;
237  in >> delta.addedProperties;
238  return in;
239 }