PointOfInterest.cpp
Go to the documentation of this file.
00001 
00011 #include <interactive_world_tools/PointOfInterest.h>
00012 
00013 using namespace std;
00014 using namespace rail::interactive_world;
00015 
00016 PointOfInterest::PointOfInterest(const string &name, const string &frame_id) : name_(name), frame_id_(frame_id)
00017 {
00018 }
00019 
00020 const string &PointOfInterest::getName() const
00021 {
00022   return name_;
00023 }
00024 
00025 void PointOfInterest::setName(const string &name)
00026 {
00027   name_ = name;
00028 }
00029 
00030 const string &PointOfInterest::getFrameID() const
00031 {
00032   return frame_id_;
00033 }
00034 
00035 void PointOfInterest::setFrameID(const string &frame_id)
00036 {
00037   frame_id_ = frame_id;
00038 }


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