Eris 1.3.19
|
00001 #ifndef ERIS_CHARACTERTYPE_H_ 00002 #define ERIS_CHARACTERTYPE_H_ 00003 00004 #include <string> 00005 00006 namespace Eris 00007 { 00008 00015 class CharacterType 00016 { 00017 public: 00023 CharacterType(const std::string& name, const std::string& description); 00024 00029 const std::string& getName() const; 00030 00035 const std::string& getDescription() const; 00036 00037 private: 00038 00042 std::string m_name; 00043 00047 std::string m_description; 00048 }; 00049 00050 } 00051 00052 #endif /* ERIS_CHARACTERTYPE_H_ */