Go to the documentation of this file.00001 #ifndef SPATIAL_WORLD_MODEL_POINT_OF_INTEREST_H_
00002 #define SPATIAL_WORLD_MODEL_POINT_OF_INTEREST_H_
00003
00004 #include <string>
00005
00006 namespace spatial_world_model
00007 {
00008
00009 class PointOfInterest
00010 {
00011 public:
00012 PointOfInterest(std::string name, std::string frame)
00013 {
00014 name_ = name;
00015 frame_ = frame;
00016 };
00017
00018 std::string getName() const
00019 {
00020 return name_;
00021 }
00022
00023 void setName(std::string name)
00024 {
00025 name_ = name;
00026 }
00027
00028 std::string getFrame() const
00029 {
00030 return frame_;
00031 }
00032
00033 void setFrame(std::string frame)
00034 {
00035 frame_ = frame;
00036 }
00037
00038 private:
00039 std::string name_, frame_;
00040 };
00041
00042 }
00043
00044 #endif