File indexing completed on 2024-04-28 04:37:34

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 TESTBREAKPOINTCONTROLLER_H
0008 #define TESTBREAKPOINTCONTROLLER_H
0009 
0010 #include "testsexport.h"
0011 
0012 #include <debugger/interfaces/ibreakpointcontroller.h>
0013 
0014 namespace KDevelop {
0015 /**
0016  * Dummy BreakpointController
0017  */
0018 class KDEVPLATFORMTESTS_EXPORT TestBreakpointController
0019     : public IBreakpointController
0020 {
0021     Q_OBJECT
0022 
0023 public:
0024     explicit TestBreakpointController(IDebugSession* parent);
0025 
0026 protected:
0027     void sendMaybe(Breakpoint* breakpoint) override;
0028 };
0029 } // end of namespace KDevelop
0030 #endif // TESTBREAKPOINTCONTROLLER_H