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

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 VARIABLECONTROLLER_H
0008 #define VARIABLECONTROLLER_H
0009 
0010 #include "mivariablecontroller.h"
0011 
0012 namespace KDevMI { namespace GDB {
0013 
0014 class DebugSession;
0015 class VariableController : public MIVariableController
0016 {
0017     Q_OBJECT
0018 
0019 public:
0020     explicit VariableController(DebugSession* parent);
0021 
0022 private:
0023     DebugSession* debugSession() const;
0024 };
0025 
0026 } // end of namespace GDB
0027 } // end of namespace KDevMI
0028 
0029 #endif // VARIABLECONTROLLER_H