clean up includes

This commit is contained in:
Oswald Buddenhagen
2009-10-20 17:51:06 +02:00
parent c936e29931
commit 3a84440e91
12 changed files with 12 additions and 39 deletions

View File

@@ -31,7 +31,6 @@
#include <utils/qtcassert.h> #include <utils/qtcassert.h>
#include <QtCore/QObject>
#include <QtCore/QProcess> #include <QtCore/QProcess>
namespace Debugger { namespace Debugger {

View File

@@ -29,7 +29,6 @@
#include "attachgdbadapter.h" #include "attachgdbadapter.h"
#include "debuggeractions.h"
#include "gdbengine.h" #include "gdbengine.h"
#include "procinterrupt.h" #include "procinterrupt.h"
#include "debuggerstringutils.h" #include "debuggerstringutils.h"

View File

@@ -31,10 +31,6 @@
#define DEBUGGER_ATTACHGDBADAPTER_H #define DEBUGGER_ATTACHGDBADAPTER_H
#include "abstractgdbadapter.h" #include "abstractgdbadapter.h"
#include "gdbengine.h"
#include <QtCore/QDebug>
#include <QtCore/QProcess>
namespace Debugger { namespace Debugger {
namespace Internal { namespace Internal {

View File

@@ -31,10 +31,6 @@
#define DEBUGGER_COREGDBADAPTER_H #define DEBUGGER_COREGDBADAPTER_H
#include "abstractgdbadapter.h" #include "abstractgdbadapter.h"
#include "gdbengine.h"
#include <QtCore/QDebug>
#include <QtCore/QProcess>
namespace Debugger { namespace Debugger {
namespace Internal { namespace Internal {

View File

@@ -29,18 +29,13 @@
#include "plaingdbadapter.h" #include "plaingdbadapter.h"
#include "debuggeractions.h"
#include "gdbengine.h" #include "gdbengine.h"
#include "procinterrupt.h" #include "procinterrupt.h"
#include "debuggerstringutils.h" #include "debuggerstringutils.h"
#include <utils/qtcassert.h> #include <utils/qtcassert.h>
#include <utils/fancymainwindow.h>
#include <coreplugin/icore.h>
#include <QtCore/QFileInfo> #include <QtCore/QFileInfo>
#include <QtCore/QVariant>
#include <QtGui/QMessageBox>
namespace Debugger { namespace Debugger {
namespace Internal { namespace Internal {

View File

@@ -31,11 +31,8 @@
#define DEBUGGER_PLAINGDBADAPTER_H #define DEBUGGER_PLAINGDBADAPTER_H
#include "abstractgdbadapter.h" #include "abstractgdbadapter.h"
#include "gdbengine.h"
#include "outputcollector.h"
#include <QtCore/QDebug> #include <outputcollector.h>
#include <QtCore/QProcess>
namespace Debugger { namespace Debugger {
namespace Internal { namespace Internal {

View File

@@ -28,8 +28,8 @@
**************************************************************************/ **************************************************************************/
#include "remotegdbadapter.h" #include "remotegdbadapter.h"
#include "debuggerstringutils.h" #include "debuggerstringutils.h"
#include "debuggeractions.h"
#include "gdbengine.h" #include "gdbengine.h"
#include <utils/qtcassert.h> #include <utils/qtcassert.h>

View File

@@ -31,10 +31,6 @@
#define DEBUGGER_REMOTEGDBADAPTER_H #define DEBUGGER_REMOTEGDBADAPTER_H
#include "abstractgdbadapter.h" #include "abstractgdbadapter.h"
#include "gdbengine.h"
#include <QtCore/QDebug>
#include <QtCore/QProcess>
namespace Debugger { namespace Debugger {
namespace Internal { namespace Internal {

View File

@@ -29,17 +29,13 @@
#include "termgdbadapter.h" #include "termgdbadapter.h"
#include "debuggeractions.h"
#include "gdbengine.h" #include "gdbengine.h"
#include "procinterrupt.h" #include "procinterrupt.h"
#include "debuggerstringutils.h" #include "debuggerstringutils.h"
#include <utils/qtcassert.h> #include <utils/qtcassert.h>
#include <utils/fancymainwindow.h>
#include <coreplugin/icore.h> #include <coreplugin/icore.h>
#include <QtCore/QFileInfo>
#include <QtCore/QVariant>
#include <QtGui/QMessageBox> #include <QtGui/QMessageBox>
namespace Debugger { namespace Debugger {

View File

@@ -31,13 +31,9 @@
#define DEBUGGER_TERMGDBADAPTER_H #define DEBUGGER_TERMGDBADAPTER_H
#include "abstractgdbadapter.h" #include "abstractgdbadapter.h"
#include "gdbengine.h"
#include <consoleprocess.h> #include <consoleprocess.h>
#include <QtCore/QDebug>
#include <QtCore/QProcess>
namespace Debugger { namespace Debugger {
namespace Internal { namespace Internal {

View File

@@ -30,22 +30,24 @@
#include "trkgdbadapter.h" #include "trkgdbadapter.h"
#include "trkoptions.h" #include "trkoptions.h"
#include "trkoptionspage.h" #include "trkoptionspage.h"
#include "debuggerstringutils.h" #include "debuggerstringutils.h"
#ifndef STANDALONE_RUNNER #ifndef STANDALONE_RUNNER
#include "gdbengine.h" #include "gdbengine.h"
#endif #endif
#ifdef Q_OS_WIN
# include <windows.h>
#else
# include <sys/types.h>
# include <unistd.h>
#endif
#include <utils/qtcassert.h> #include <utils/qtcassert.h>
#include <QtCore/QTimer> #include <QtCore/QTimer>
#include <QtCore/QDir> #include <QtCore/QDir>
#ifdef Q_OS_WIN
# include <windows.h>
#else
# include <sys/types.h>
# include <unistd.h>
#endif
#define CB(callback) \ #define CB(callback) \
static_cast<GdbEngine::AdapterCallback>(&TrkGdbAdapter::callback), \ static_cast<GdbEngine::AdapterCallback>(&TrkGdbAdapter::callback), \
STRINGIFY(callback) STRINGIFY(callback)

View File

@@ -30,10 +30,11 @@
#ifndef DEBUGGER_TRKGDBADAPTER_H #ifndef DEBUGGER_TRKGDBADAPTER_H
#define DEBUGGER_TRKGDBADAPTER_H #define DEBUGGER_TRKGDBADAPTER_H
#include "abstractgdbadapter.h"
#include "trkutils.h" #include "trkutils.h"
#include "trkdevice.h" #include "trkdevice.h"
#include "trkoptions.h" #include "trkoptions.h"
#include "abstractgdbadapter.h"
#include <QtCore/QHash> #include <QtCore/QHash>
#include <QtCore/QPointer> #include <QtCore/QPointer>