00001 #ifndef OOMRM_LANDMARK_H 00002 #define OOMRM_LANDMARK_H 00003 00011 #ifdef DOS 00012 #include <string> 00013 #endif 00014 #include <remote_command.h> 00015 00016 class landmark 00017 { 00018 public: 00019 landmark(void); 00020 #ifdef DOS 00021 set(string iname, pose& ipose); 00022 string& name(void); 00023 #endif 00024 pose& position(void); 00025 protected: 00026 #ifdef DOS 00027 string _name; 00028 #endif 00029 short _id; 00030 remote_command _location; 00031 }; 00032 00033 #endif
1.3