diff --git a/plugins/gdb/debugsession.h b/plugins/gdb/debugsession.h index 689de8594f..b86bff01f3 100644 --- a/plugins/gdb/debugsession.h +++ b/plugins/gdb/debugsession.h @@ -1,104 +1,99 @@ /* * GDB Debugger Support * * Copyright 1999-2001 John Birch * Copyright 2001 by Bernd Gehrmann * Copyright 2007 Hamish Rodda * Copyright 2009 Niko Sams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public * License along with this program; if not, write to the * Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef GDB_DEBUGSESSION_H #define GDB_DEBUGSESSION_H #include "midebugsession.h" #include "dbgglobal.h" #include "gdb.h" #include "gdbbreakpointcontroller.h" #include "gdbframestackmodel.h" #include "variablecontroller.h" #include "mi/mi.h" #include class IExecutePlugin; namespace KDevelop { class ILaunchConfiguration; } namespace KDevMI { class STTY; -namespace MI { -class MICommand; -class CommandQueue; -} - namespace GDB { class CppDebuggerPlugin; class DebugSession : public MIDebugSession { Q_OBJECT public: explicit DebugSession(CppDebuggerPlugin *plugin = nullptr); ~DebugSession() override; BreakpointController * breakpointController() const override; VariableController * variableController() const override; GdbFrameStackModel * frameStackModel() const override; /// FIXME: only used in unit test currently, potentially could /// be made a user configurable option. /// Whether turn off auto-disable ASLR when starting inferiors void setAutoDisableASLR(bool enable); protected: GdbDebugger *createDebugger() const override; void initializeDebugger() override; void configInferior(KDevelop::ILaunchConfiguration* cfg, IExecutePlugin* iexec, const QString&) override; bool execInferior(KDevelop::ILaunchConfiguration* cfg, IExecutePlugin*, const QString& executable) override; bool loadCoreFile(KDevelop::ILaunchConfiguration *cfg, const QString &debugee, const QString &corefile) override; private Q_SLOTS: void handleVersion(const QStringList& s); void handleFileExecAndSymbols(const MI::ResultRecord& r); void handleCoreFile(const MI::ResultRecord& r); private: friend class GdbTest; BreakpointController *m_breakpointController = nullptr; VariableController *m_variableController = nullptr; GdbFrameStackModel *m_frameStackModel = nullptr; bool m_autoDisableASLR = false; }; } // end of namespace GDB } // end of namespace KDevMI #endif