debugger: minor cleanup

This commit is contained in:
hjk
2010-12-10 09:37:31 +01:00
parent 1a3beebf23
commit 18986b8ccb
5 changed files with 41 additions and 37 deletions

View File

@@ -44,9 +44,12 @@ class Environment;
namespace Debugger {
class DebuggerEngine;
class DebuggerRunControl;
class DebuggerRunControlPrivate;
class DebuggerStartParameters;
namespace Internal {
class DebuggerRunControlPrivate;
class DebuggerRunControlFactory
: public ProjectExplorer::IRunControlFactory
{
@@ -72,6 +75,8 @@ private:
unsigned m_enabledEngines;
};
} // namespace Internal
// This is a job description containing all data "local" to the jobs, including
// the models of the individual debugger views.
@@ -108,8 +113,6 @@ public:
QString *errorMessage,
QString *settingsCategory = 0,
QString *settingsPage = 0);
QString idString() const;
signals:
void engineRequestSetup();
@@ -120,7 +123,7 @@ protected:
const DebuggerStartParameters &startParameters() const;
private:
QScopedPointer<DebuggerRunControlPrivate> d;
QScopedPointer<Internal::DebuggerRunControlPrivate> d;
};
} // namespace Debugger