File indexing completed on 2024-05-05 04:39:53

0001 /*
0002     SPDX-FileCopyrightText: 2016 Aetf <aetf@unlimitedcodeworks.xyz>
0003 
0004     SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0005 */
0006 
0007 #ifndef GDBBREAKPOINTCONTROLLER_H
0008 #define GDBBREAKPOINTCONTROLLER_H
0009 
0010 #include "mibreakpointcontroller.h"
0011 
0012 namespace KDevMI { namespace GDB {
0013 
0014 class DebugSession;
0015 class BreakpointController : public MIBreakpointController
0016 {
0017     Q_OBJECT
0018 
0019 public:
0020     explicit BreakpointController(DebugSession *parent);
0021 private:
0022 };
0023 
0024 } // end of namespace GDB
0025 } // end of namespace KDevMI
0026 
0027 #endif // GDBBREAKPOINTCONTROLLER_H