diff options
Diffstat (limited to 'kgeography/src/divisioncapitalasker.h')
-rw-r--r-- | kgeography/src/divisioncapitalasker.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/kgeography/src/divisioncapitalasker.h b/kgeography/src/divisioncapitalasker.h new file mode 100644 index 00000000..e63901c5 --- /dev/null +++ b/kgeography/src/divisioncapitalasker.h @@ -0,0 +1,30 @@ +/*************************************************************************** + * Copyright (C) 2004 by Albert Astals Cid * + * tsdgeos@terra.es * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + ***************************************************************************/ + +#ifndef DIVISIONCAPITALASKER_H +#define DIVISIONCAPITALASKER_H + +#include "boxasker.h" + +class divisionCapitalAsker : public boxAsker +{ + public: + divisionCapitalAsker(QWidget *parent, KGmap *m, QWidget *w, uint count); + + protected: + bool nextBoxAskerQuestionHook(const QString &division, int i, bool isAnswer); + void setAnswerHook(int userSays); + QString getQuestionHook() const; + + private: + QString p_capital; +}; + +#endif |