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

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 "testframestackmodel.h"
0008 
0009 using namespace KDevelop;
0010 
0011 TestFrameStackModel::TestFrameStackModel(IDebugSession* parent)
0012     : FrameStackModel(parent)
0013 {
0014 }
0015 
0016 void TestFrameStackModel::fetchThreads()
0017 {
0018 }
0019 
0020 void TestFrameStackModel::fetchFrames(int threadNumber, int from, int to)
0021 {
0022     Q_UNUSED(threadNumber);
0023     Q_UNUSED(from);
0024     Q_UNUSED(to);
0025 }
0026 
0027 #include "moc_testframestackmodel.cpp"