/*************************************************************************** wqscore.h - description ------------------- copyright : (C) 2003 by Peter Hedlund email : peter.hedlund@kdemail.net ***************************************************************************/ /*************************************************************************** * * * 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 WTQSCORE_H #define WTQSCORE_H #include /** @author Peter Hedlund */ class WTQScore{ public: enum CountDirection {cdCorrect, cdError, cdNone}; WTQScore(); ~WTQScore(); void setAsPercent(bool p); void setQuestionCount(int c); void countIncrement(CountDirection d); TQString answerText(); TQString correctText(); TQString errorText(); private: bool m_percent; int m_questionCount; int m_error; int m_correct; int m_answerCount; TQString valueToString(int i); }; #endif