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