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
00028 virtual ~CharacterType();
00029
00034 const std::string& getName() const;
00035
00040 const std::string& getDescription() const;
00041
00042 private:
00043
00047 std::string m_name;
00048
00052 std::string m_description;
00053 };
00054
00055 }
00056
00057 #endif