File indexing completed on 2024-05-19 15:45:57

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 LLDB_BREAKPOINTCONTROLLER_H
0008 #define LLDB_BREAKPOINTCONTROLLER_H
0009 
0010 #include "mibreakpointcontroller.h"
0011 
0012 namespace KDevMI { namespace LLDB {
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 LLDB
0025 } // end of namespace KDevMI
0026 
0027 #endif // LLDB_BREAKPOINTCONTROLLER_H