diff options
author | hjk <hjk121@nokiamail.com> | 2014-10-22 13:04:47 +0200 |
---|---|---|
committer | hjk <hjk121@nokiamail.com> | 2014-10-23 14:12:33 +0200 |
commit | 9ba17acc8016554fcd4311e112a90a993d791ba3 (patch) | |
tree | e8e37aa26e8a6a463e897b231485d7ede7d64a92 /src/plugins/debugger/debuggerplugin.h | |
parent | 6b4c254bf3644a2a9aefafc73309806372c8366b (diff) | |
download | qt-creator-9ba17acc8016554fcd4311e112a90a993d791ba3.tar.gz |
Debugger: Replace debuggerCore() by equivalent free functions
One indirection less on the user code side, and easier to export
if needed (partially addressing QTCREATORBUG-13187)
Change-Id: I13ab9f471a3a34da7a6331aefc83f6d02413bfab
Reviewed-by: David Schulz <david.schulz@digia.com>
Diffstat (limited to 'src/plugins/debugger/debuggerplugin.h')
-rw-r--r-- | src/plugins/debugger/debuggerplugin.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/plugins/debugger/debuggerplugin.h b/src/plugins/debugger/debuggerplugin.h index ae1b41175b..8014b79058 100644 --- a/src/plugins/debugger/debuggerplugin.h +++ b/src/plugins/debugger/debuggerplugin.h @@ -34,6 +34,8 @@ #include "debugger_global.h" #include <extensionsystem/iplugin.h> +namespace ProjectExplorer { class RunControl; } + namespace Debugger { namespace Internal { @@ -52,6 +54,7 @@ private: QObject *remoteCommand(const QStringList &options, const QStringList &arguments); ShutdownFlag aboutToShutdown(); void extensionsInitialized(); + Q_SLOT void attachExternalApplication(ProjectExplorer::RunControl *rc); #ifdef WITH_TESTS private slots: |