summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/watchutils.h
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2011-01-10 10:14:23 +0100
committerFriedemann Kleint <Friedemann.Kleint@nokia.com>2011-01-10 10:14:23 +0100
commita7eccce733afe981dd4254816b5f23868f6cede6 (patch)
treed102a53fbe52db7be432931dd4eb2a3fe6d02624 /src/plugins/debugger/watchutils.h
parentf9548e5d13f5b644f75f48aa4b0f428b9c079294 (diff)
downloadqt-creator-a7eccce733afe981dd4254816b5f23868f6cede6.tar.gz
Debugger: Header cleanup
Diffstat (limited to 'src/plugins/debugger/watchutils.h')
-rw-r--r--src/plugins/debugger/watchutils.h13
1 files changed, 1 insertions, 12 deletions
diff --git a/src/plugins/debugger/watchutils.h b/src/plugins/debugger/watchutils.h
index 7616802cab..e79a85eb84 100644
--- a/src/plugins/debugger/watchutils.h
+++ b/src/plugins/debugger/watchutils.h
@@ -175,7 +175,6 @@ public:
// Complete parse of "query" (protocol 1) response from debuggee buffer.
// 'data' excludes the leading indicator character.
- bool parseQuery(const char *data);
bool parseQuery(const GdbMi &data);
// Sizes can be added as the debugger determines them
void addSize(const QByteArray &type, int size);
@@ -183,14 +182,9 @@ public:
// Determine the parameters required for an "evaluate" (protocol 2) call
void evaluationParameters(const WatchData &data,
const TypeData &td,
- Debugger debugger,
QByteArray *inBuffer,
QList<QByteArray> *extraParameters) const;
- // Parse the value response (protocol 2) from debuggee buffer.
- // 'data' excludes the leading indicator character.
- static bool parseValue(const char *data, QList<WatchData> *l);
-
QString toString(bool debug = false) const;
static QString msgDumperOutdated(double requiredVersion, double currentVersion);
@@ -200,12 +194,7 @@ private:
typedef QMap<QByteArray, int> SizeCache;
// Look up a simple (namespace) type
- QByteArray evaluationSizeofTypeExpression(const QByteArray &typeName, Debugger d) const;
- QByteArray qMapNodeValueOffsetExpression(const QByteArray &type,
- const QByteArray &addressIn, Debugger debugger) const;
-
- QByteArray lookupCdbDummyAddressExpression
- (const QByteArray &expr, const QByteArray &address) const;
+ QByteArray evaluationSizeofTypeExpression(const QByteArray &typeName) const;
NameTypeMap m_nameTypeMap;
SizeCache m_sizeCache;