moved kdeaccessibility kdeaddons kdeadmin kdeartwork kdebindings kdeedu kdegames...
[kdeedu.git] / kbruch / src / exercisebase.cpp
blobf8d376c540cef34fb6b83af87c3edee7ce62bf37
1 /***************************************************************************
2 exercisebase.cpp
3 -------------------
4 begin : 2004/06/03
5 copyright : (C) 2004 by Sebastian Stein
6 email : seb.kde@hpfsc.de
7 ***************************************************************************/
9 /***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 ***************************************************************************/
18 #include "exercisebase.h"
19 #include "exercisebase.moc"
21 /* these includes are needed for KDE support */
22 #include <kapplication.h>
23 #include <klocale.h>
25 /* ----- public member functions ----- */
27 /* constructor */
28 ExerciseBase::ExerciseBase(QWidget * parent, const char * name):
29 QWidget(parent, name)
31 #ifdef DEBUG
32 kdDebug() << "constructor ExerciseBase()" << endl;
33 #endif
36 /* destructor */
37 ExerciseBase::~ExerciseBase()
39 #ifdef DEBUG
40 kdDebug() << "destructor ExerciseBase()" << endl;
41 #endif