Debugger: rename gdb/gdbmi.{h,cpp} into debuggerprotocol.{h,cpp}

The scope is a bit broader nowadays.

Change-Id: I9578da94f06df199be5668c1751fd7bfb37f1c5b
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
This commit is contained in:
hjk
2013-01-24 10:38:40 +01:00
parent 09cd8bf4e6
commit e52a35a239
23 changed files with 48 additions and 51 deletions

View File

@@ -38,6 +38,7 @@
#include "debuggeractions.h"
#include "debuggercore.h"
#include "debuggerinternalconstants.h"
#include "debuggerprotocol.h"
#include "debuggerrunner.h"
#include "debuggerstartparameters.h"
#include "debuggertooltipmanager.h"
@@ -51,7 +52,6 @@
#include "threadshandler.h"
#include "watchhandler.h"
#include "watchutils.h"
#include "gdb/gdbmi.h"
#include "shared/cdbsymbolpathlisteditor.h"
#include "shared/hostutils.h"
#include "procinterrupt.h"

View File

@@ -28,13 +28,14 @@
****************************************************************************/
#include "cdbparsehelpers.h"
#include "breakpoint.h"
#include "threadshandler.h"
#include "registerhandler.h"
#include "bytearrayinputstream.h"
#include "gdb/gdbmi.h"
#include "debuggerprotocol.h"
#include "disassemblerlines.h"
#include "registerhandler.h"
#include "shared/hostutils.h"
#include "threadshandler.h"
#include <utils/qtcassert.h>

View File

@@ -34,6 +34,7 @@ HEADERS += \
debuggerengine.h \
debuggermainwindow.h \
debuggerplugin.h \
debuggerprotocol.h \
debuggerrunner.h \
debuggerstartparameters.h \
debuggerstreamops.h \
@@ -85,6 +86,7 @@ SOURCES += \
debuggerengine.cpp \
debuggermainwindow.cpp \
debuggerplugin.cpp \
debuggerprotocol.cpp \
debuggerrunner.cpp \
debuggerstreamops.cpp \
debuggerkitconfigwidget.cpp \

View File

@@ -66,6 +66,8 @@ QtcPlugin {
"debuggermainwindow.h",
"debuggerplugin.cpp",
"debuggerplugin.h",
"debuggerprotocol.cpp",
"debuggerprotocol.h",
"debuggerruncontrolfactory.h",
"debuggerrunner.cpp",
"debuggerrunner.h",
@@ -160,8 +162,6 @@ QtcPlugin {
"gdb/gdb.qrc",
"gdb/gdbengine.cpp",
"gdb/gdbengine.h",
"gdb/gdbmi.cpp",
"gdb/gdbmi.h",
"gdb/gdboptionspage.cpp",
"gdb/gdboptionspage.h",
"gdb/localgdbprocess.cpp",

View File

@@ -27,7 +27,7 @@
**
****************************************************************************/
#include "gdbmi.h"
#include "debuggerprotocol.h"
#include <utils/qtcassert.h>

View File

@@ -27,8 +27,10 @@
**
****************************************************************************/
#ifndef DEBUGGER_GDBMI_H
#define DEBUGGER_GDBMI_H
#ifndef DEBUGGER_PROTOCOL_H
#define DEBUGGER_PROTOCOL_H
#include "debugger_global.h"
#include <QByteArray>
#include <QList>
@@ -175,6 +177,5 @@ void extractGdbVersion(const QString &msg,
} // namespace Internal
} // namespace Debugger
//Q_DECLARE_METATYPE(GdbDebugger::Internal::GdbMi)
#endif // DEBUGGER_GDBMI_H
#endif // DEBUGGER_PROTOCOL_H

View File

@@ -28,11 +28,11 @@
****************************************************************************/
#include "abstractplaingdbadapter.h"
#include "gdbmi.h"
#include "gdbengine.h"
#include "debuggerstartparameters.h"
#include "debuggeractions.h"
#include "debuggercore.h"
#include "debuggerprotocol.h"
#include "debuggerstartparameters.h"
#include "debuggerstringutils.h"
#include <QDir>

View File

@@ -28,12 +28,11 @@
****************************************************************************/
#include "attachgdbadapter.h"
#include "gdbmi.h"
#include "debuggerstartparameters.h"
#include "gdbengine.h"
#include "procinterrupt.h"
#include "debuggerprotocol.h"
#include "debuggerstringutils.h"
#include "debuggerstartparameters.h"
#include "procinterrupt.h"
#include <utils/qtcassert.h>

View File

@@ -28,13 +28,12 @@
****************************************************************************/
#include "gdbengine.h"
#include "gdbmi.h"
#include "debuggerstartparameters.h"
#include "debuggeractions.h"
#include "debuggercore.h"
#include "debuggerprotocol.h"
#include "debuggerstartparameters.h"
#include "debuggerstringutils.h"
#include "stackhandler.h"
#include "watchhandler.h"

View File

@@ -29,12 +29,11 @@
#include "coregdbadapter.h"
#include "debuggerstartparameters.h"
#include "debuggercore.h"
#include "debuggeractions.h"
#include "debuggercore.h"
#include "debuggerprotocol.h"
#include "debuggerstartparameters.h"
#include "debuggerstringutils.h"
#include "gdbmi.h"
#include "gdbengine.h"
#include <utils/consoleprocess.h>
#include <utils/elfreader.h>

View File

@@ -1,5 +1,4 @@
HEADERS += \
$$PWD/gdbmi.h \
$$PWD/gdbengine.h \
$$PWD/gdboptionspage.h \
$$PWD/attachgdbadapter.h \
@@ -15,7 +14,6 @@ HEADERS += \
$$PWD/startgdbserverdialog.h
SOURCES += \
$$PWD/gdbmi.cpp \
$$PWD/gdbengine.cpp \
$$PWD/classicgdbengine.cpp \
$$PWD/pythongdbengine.cpp \

View File

@@ -44,11 +44,11 @@
#include "debuggerconstants.h"
#include "debuggercore.h"
#include "debuggerplugin.h"
#include "debuggerprotocol.h"
#include "debuggerrunner.h"
#include "debuggerstringutils.h"
#include "debuggertooltipmanager.h"
#include "disassembleragent.h"
#include "gdbmi.h"
#include "gdboptionspage.h"
#include "memoryagent.h"
#include "watchutils.h"

View File

@@ -28,7 +28,8 @@
****************************************************************************/
#include "gdbengine.h"
#include "gdbmi.h"
#include "debuggerprotocol.h"
#include "debuggeractions.h"
#include "debuggercore.h"
#include "debuggerstringutils.h"

View File

@@ -30,17 +30,16 @@
#include "remotegdbserveradapter.h"
#include "debuggeractions.h"
#include "debuggerstartparameters.h"
#include "debuggercore.h"
#include "debuggerprotocol.h"
#include "debuggerstartparameters.h"
#include "debuggerstringutils.h"
#include "gdbengine.h"
#include "gdbmi.h"
#include <projectexplorer/abi.h>
#include <utils/fancymainwindow.h>
#include <utils/hostosinfo.h>
#include <utils/qtcassert.h>
#include <utils/fancymainwindow.h>
#include <utils/qtcprocess.h>
#include <projectexplorer/abi.h>
#include <QFileInfo>
#include <QMessageBox>

View File

@@ -29,12 +29,11 @@
#include "termgdbadapter.h"
#include "debuggerstartparameters.h"
#include "gdbmi.h"
#include "gdbengine.h"
#include "procinterrupt.h"
#include "debuggerstringutils.h"
#include "debuggercore.h"
#include "debuggerprotocol.h"
#include "debuggerstartparameters.h"
#include "debuggerstringutils.h"
#include "procinterrupt.h"
#include "shared/hostutils.h"
#include <utils/hostosinfo.h>

View File

@@ -29,11 +29,12 @@
#include "pdbengine.h"
#include "debuggerstartparameters.h"
#include "debuggeractions.h"
#include "debuggercore.h"
#include "debuggerdialogs.h"
#include "debuggerplugin.h"
#include "debuggerprotocol.h"
#include "debuggerstartparameters.h"
#include "debuggerstringutils.h"
#include "debuggertooltipmanager.h"
@@ -44,8 +45,6 @@
#include "watchhandler.h"
#include "watchutils.h"
#include "../gdb/gdbmi.h"
#include <utils/qtcassert.h>
#include <texteditor/itexteditor.h>

View File

@@ -28,11 +28,11 @@
****************************************************************************/
#include "threadshandler.h"
#include "gdb/gdbmi.h"
#include "watchutils.h"
#include "debuggerconstants.h"
#include "debuggercore.h"
#include "debuggerprotocol.h"
#include "watchutils.h"
#include <utils/qtcassert.h>

View File

@@ -29,8 +29,8 @@
#include "watchutils.h"
#include "watchdata.h"
#include "debuggerprotocol.h"
#include "debuggerstringutils.h"
#include "gdb/gdbmi.h"
#include <utils/qtcassert.h>