00001 /* ES40 emulator. 00002 * Copyright (C) 2007-2008 by the ES40 Emulator Project 00003 * 00004 * WWW : http://sourceforge.net/projects/es40 00005 * E-mail : camiel@camicom.com 00006 * 00007 * This program is free software; you can redistribute it and/or 00008 * modify it under the terms of the GNU General Public License 00009 * as published by the Free Software Foundation; either version 2 00010 * of the License, or (at your option) any later version. 00011 * 00012 * This program is distributed in the hope that it will be useful, 00013 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00015 * GNU General Public License for more details. 00016 * 00017 * You should have received a copy of the GNU General Public License 00018 * along with this program; if not, write to the Free Software 00019 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 00020 * 00021 * Although this is not required, the author would appreciate being notified of, 00022 * and receiving any modifications you may make to the source code that might serve 00023 * the general public. 00024 */ 00025 00039 class Question 00040 { 00041 public: 00045 string getAnswer() 00046 { 00047 return mAnswer; 00048 } 00049 00053 void setAnswer(string answer) 00054 { 00055 mAnswer = answer; 00056 } 00057 00062 void setExplanation(string explanation) 00063 { 00064 mExplanation = explanation; 00065 } 00066 00070 void setQuestion(string question) 00071 { 00072 mQuestion = question; 00073 } 00074 00079 void setDefault(string defval) 00080 { 00081 mDefault = defval; 00082 } 00083 00087 virtual string ask() = 0; 00088 00092 virtual void explain() 00093 { 00094 cout << "\nEXPLANATION:\n" << mExplanation << "\n\n"; 00095 } 00096 00097 protected: 00099 string mAnswer; 00100 00102 string mExplanation; 00103 00105 string mQuestion; 00106 00108 string mDefault; 00109 };