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 #include "variablecontroller.h"
0008 
0009 #include "debugsession.h"
0010 
0011 using namespace KDevMI::GDB;
0012 
0013 VariableController::VariableController(DebugSession *parent)
0014     : MIVariableController(parent)
0015 {
0016 }
0017 
0018 DebugSession *VariableController::debugSession() const
0019 {
0020     return static_cast<DebugSession*>(const_cast<QObject*>(QObject::parent()));
0021 }
0022 
0023 #include "moc_variablecontroller.cpp"