PointOfInterest.h
Go to the documentation of this file.
00001 
00011 #ifndef RAIL_INTERACTIVE_WORLD_POINT_OF_INTEREST_H_
00012 #define RAIL_INTERACTIVE_WORLD_POINT_OF_INTEREST_H_
00013 
00014 #include <string>
00015 
00016 namespace rail
00017 {
00018 namespace interactive_world
00019 {
00020 
00027 class PointOfInterest
00028 {
00029 public:
00038   PointOfInterest(const std::string &name = "", const std::string &frame_id = "");
00039 
00047   const std::string &getName() const;
00048 
00056   void setName(const std::string &name);
00057 
00065   const std::string &getFrameID() const;
00066 
00074   void setFrameID(const std::string &frame_id);
00075 
00076 private:
00078   std::string name_, frame_id_;
00079 };
00080 
00081 }
00082 }
00083 
00084 #endif


interactive_world_tools
Author(s): Russell Toris
autogenerated on Thu Jun 6 2019 21:34:15