duncan
Mom and Dad were wrong!
/home/malcolm/tmp/duncan/prototype/0/client/character.h
00001 #ifndef CLIENT_CHARACTER_H_
00002 #define CLIENT_CHARACTER_H_
00003 
00004 #include <string>
00005 
00006 namespace client {
00007 
00015 class Character {
00016         private:
00017                 std::string name_;
00018                 size_t row_,col_;
00019         public:
00020                 Character();
00021 
00022                 void set_pos(size_t,size_t);
00023                 void set_name(const std::string&);
00024                 size_t row();
00025                 size_t col();
00026                 const std::string& name();
00027 };
00028 
00029 } // namespace
00030 
00031 #endif
 All Classes Namespaces Functions Variables Typedefs Enumerations