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 #ifndef FRAMESTACKMODEL_H
0008 #define FRAMESTACKMODEL_H
0009 
0010 #include "miframestackmodel.h"
0011 
0012 namespace KDevMI { namespace GDB {
0013 
0014 class DebugSession;
0015 class GdbFrameStackModel : public KDevMI::MIFrameStackModel
0016 {
0017     Q_OBJECT
0018 public:
0019     explicit GdbFrameStackModel(DebugSession* session);
0020 
0021     DebugSession* session();
0022 };
0023 
0024 } // end of namespace GDB
0025 } // end of namespace KDevMI
0026 
0027 #endif // FRAMESTACKMODEL_H