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 #include "gdbvariable.h"
0008 
0009 #include "debugsession.h"
0010 
0011 using namespace KDevelop;
0012 using namespace KDevMI::GDB;
0013 
0014 GdbVariable::GdbVariable(DebugSession *session, TreeModel *model, TreeItem *parent,
0015                          const QString& expression, const QString& display)
0016     : MIVariable(session, model, parent, expression, display)
0017 {
0018 }
0019 
0020 #include "moc_gdbvariable.cpp"