debugger: remove unused bits from the debugger plugin interface

This commit is contained in:
hjk
2010-12-06 08:43:29 +01:00
parent 3006a136d0
commit 3282c1af27
2 changed files with 6 additions and 24 deletions

View File

@@ -45,11 +45,10 @@ namespace Debugger {
class DebuggerRunControl;
class DebuggerStartParameters;
class DebuggerMainWindow;
// This is the "external" interface of the debugger plugin that's
// visible from Creator core. The internal interfact to global
// functionality to be used by debugger views and debugger engines
// 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.
class DEBUGGER_EXPORT DebuggerPlugin : public ExtensionSystem::IPlugin
@@ -65,7 +64,6 @@ public:
static void startDebugger(ProjectExplorer::RunControl *runControl);
static void displayDebugger(ProjectExplorer::RunControl *runControl);
static bool isActiveDebugLanguage(int language);
static DebuggerMainWindow *mainWindow();
private:
// IPlugin implementation.
@@ -73,9 +71,6 @@ private:
void remoteCommand(const QStringList &options, const QStringList &arguments);
ShutdownFlag aboutToShutdown();
void extensionsInitialized();
void runControlStarted(DebuggerRunControl *runControl);
void runControlFinished(DebuggerRunControl *runControl);
};
} // namespace Debugger