00001 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */ 00002 /* 00003 * frpuniverse 00004 * Copyright (C) Peter L. Berghold 2008 <Peter@Berghold.net> 00005 * 00006 * frpuniverse is free software. 00007 * 00008 * You may redistribute it and/or modify it under the terms of the 00009 * GNU General Public License, as published by the Free Software 00010 * Foundation; either version 2 of the License, or (at your option) 00011 * any later version. 00012 * 00013 * frpuniverse is distributed in the hope that it will be useful, 00014 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 00016 * See the GNU General Public License for more details. 00017 * 00018 * You should have received a copy of the GNU General Public License 00019 * along with frpuniverse. If not, write to: 00020 * The Free Software Foundation, Inc., 00021 * 51 Franklin Street, Fifth Floor 00022 * Boston, MA 02110-1301, USA. 00023 */ 00024 00025 #include <stdio.h> 00026 00027 #ifndef _SKILL_ENTRY_HPP_ 00028 #define _SKILL_ENTRY_HPP_ 00029 00042 class skillEntry 00043 { 00044 public: 00048 skillEntry(); 00049 00056 skillEntry(char*); 00057 00064 skillEntry(char*,int); 00065 00072 skillEntry* getNext(); 00073 00077 void setNext(skillEntry*); 00078 00085 char* getSkill(); 00086 00093 void setSkill(char*); 00094 00100 int getLevel(); 00101 00107 void setLevel(int); 00108 00114 char* toString(); 00115 00121 void XMLout(FILE* fout); 00122 00123 00124 protected: 00125 00126 private: 00127 skillEntry *next; // linked list implementation. 00128 char *skill; 00129 int level; 00130 00131 00132 }; 00133 00134 #endif // _SKILL_ENTRY_HPP_