debugger: refactor watch point lookup

In preparation of bitfield watch points.
This commit is contained in:
hjk
2011-03-01 19:16:24 +01:00
parent b0b8a452c1
commit 2780ff6f22
6 changed files with 30 additions and 31 deletions

View File

@@ -80,12 +80,10 @@ public:
// Find a breakpoint matching approximately the data in needle.
BreakpointId findSimilarBreakpoint(const BreakpointResponse &needle) const;
BreakpointId findBreakpointByNumber(int bpNumber) const;
BreakpointId findWatchpointByAddress(quint64 address) const;
BreakpointId findWatchpoint(const BreakpointParameters &data) const;
BreakpointId findBreakpointByFunction(const QString &functionName) const;
BreakpointId findBreakpointByIndex(const QModelIndex &index) const;
BreakpointIds findBreakpointsByIndex(const QList<QModelIndex> &list) const;
void setWatchpointByAddress(quint64 address);
bool hasWatchpointAt(quint64 address) const;
void updateMarkers();
static QIcon breakpointIcon();