File indexing completed on 2024-04-21 03:41:47

0001 /*
0002     SPDX-FileCopyrightText: 2004 Sebastian Stein <seb.kde@hpfsc.de>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #include "ExerciseBase.h"
0008 
0009 /* these includes are needed for Qt support */
0010 #ifdef DEBUG
0011 #include <QDebug>
0012 #endif
0013 
0014 /* ----- public member functions ----- */
0015 
0016 /* constructor */
0017 ExerciseBase::ExerciseBase(QWidget * parent) :
0018     QWidget(parent)
0019 {
0020 #ifdef DEBUG
0021     qDebug() << "constructor ExerciseBase()";
0022 #endif
0023 }
0024 
0025 /* destructor */
0026 ExerciseBase::~ExerciseBase()
0027 {
0028 #ifdef DEBUG
0029     qDebug() << "destructor ExerciseBase()";
0030 #endif
0031 }
0032 
0033 #include "moc_ExerciseBase.cpp"