00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef __SKILL_LEVEL_H
00015 #define __SKILL_LEVEL_H
00016
00017 #include <string>
00018 #include <map>
00019 #include <list>
00020 using namespace std;
00021
00022
00023
00024 class skill_level {
00025 class skill *skill;
00026 int level;
00027 public:
00028 skill_level();
00029
00030
00031 class skill& getSkill() const;
00032 void setSkill(class skill &v);
00033
00034
00035 const int getLevel() const;
00036 void setLevel(const int v);
00037
00038 void save(class channel &ch);
00039 void load(class channel &ch);
00040 void xml(ofstream &f, int l=0, int r=0);
00041 };
00042
00043 #endif // __SKILL_LEVEL_H