debugger: more tracepoint stuff

This commit is contained in:
hjk
2010-12-16 17:58:43 +01:00
parent 2074ce8f4d
commit 39c145bf93
5 changed files with 54 additions and 3 deletions

View File

@@ -175,6 +175,7 @@ QDataStream &operator<<(QDataStream &stream, const BreakpointParameters &s)
stream << quint64(s.address);
stream << s.functionName;
stream << s.useFullPath;
stream << s.tracepoint;
return stream;
}
@@ -191,6 +192,7 @@ QDataStream &operator>>(QDataStream &stream, BreakpointParameters &s)
stream >> t; s.address = t;
stream >> str; s.functionName = str;
stream >> b; s.useFullPath = b;
stream >> b; s.tracepoint = b;
return stream;
}