forked from qt-creator/qt-creator
Debugger: Documentation work on qtcreatorcdbext/Debugger.
Add comments, introduce internal switch in doc/api/qtcreator-api.qdocconf.
This commit is contained in:
@@ -146,6 +146,7 @@
|
||||
/*!
|
||||
\namespace Debugger::Internal
|
||||
Internal namespace of the Debugger plugin
|
||||
\internal
|
||||
*/
|
||||
|
||||
/*!
|
||||
@@ -878,6 +879,20 @@ namespace Internal {
|
||||
|
||||
static DebuggerPluginPrivate *theDebuggerCore = 0;
|
||||
|
||||
/*!
|
||||
\class Debugger::Internal::DebuggerCore
|
||||
|
||||
This is the "internal" interface of the debugger plugin that's
|
||||
used by debugger views and debugger engines. The interface is
|
||||
implemented in DebuggerPluginPrivate.
|
||||
*/
|
||||
|
||||
/*!
|
||||
\class Debugger::Internal::DebuggerPluginPrivate
|
||||
|
||||
Implementation of DebuggerCore.
|
||||
*/
|
||||
|
||||
class DebuggerPluginPrivate : public DebuggerCore
|
||||
{
|
||||
Q_OBJECT
|
||||
@@ -3204,6 +3219,14 @@ void DebuggerPluginPrivate::aboutToShutdown()
|
||||
|
||||
using namespace Debugger::Internal;
|
||||
|
||||
/*!
|
||||
\class Debugger::DebuggerPlugin
|
||||
|
||||
This is the "external" interface of the debugger plugin that's visible
|
||||
from Qt Creator core. The internal interface to global debugger
|
||||
functionality that is used by debugger views and debugger engines
|
||||
is DebuggerCore, implemented in DebuggerPluginPrivate. */
|
||||
|
||||
DebuggerPlugin::DebuggerPlugin()
|
||||
{
|
||||
theDebuggerCore = new DebuggerPluginPrivate(this);
|
||||
|
||||
Reference in New Issue
Block a user