From 4d46c69d255cf74838a779b24de9d0df15878a11 Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Fri, 4 Feb 2011 15:08:31 +0100 Subject: Debugger: Documentation work on qtcreatorcdbext/Debugger. Add comments, introduce internal switch in doc/api/qtcreator-api.qdocconf. --- src/plugins/debugger/breakpoint.cpp | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'src/plugins/debugger/breakpoint.cpp') diff --git a/src/plugins/debugger/breakpoint.cpp b/src/plugins/debugger/breakpoint.cpp index 413b2f36b9..06331dc8ee 100644 --- a/src/plugins/debugger/breakpoint.cpp +++ b/src/plugins/debugger/breakpoint.cpp @@ -45,6 +45,12 @@ namespace Internal { // ////////////////////////////////////////////////////////////////// +/*! + \class Debugger::Internal::BreakpointParameters + + Data type holding the parameters of a breakpoint. +*/ + BreakpointParameters::BreakpointParameters(BreakpointType t) : type(t), enabled(true), useFullPath(false), ignoreCount(0), lineNumber(0), address(0), threadSpec(-1), @@ -97,10 +103,17 @@ QString BreakpointParameters::toString() const ////////////////////////////////////////////////////////////////// // -// BreakpointParameters +// BreakpointResponse // ////////////////////////////////////////////////////////////////// +/*! + \class Debugger::Internal::BreakpointResponse + + This is what debuggers produce in response to the attempt to + insert a breakpoint. The data might differ from the requested bits. +*/ + BreakpointResponse::BreakpointResponse() : number(0), pending(true), multiple(false), correctedLineNumber(0) {} -- cgit v1.2.1