map.h 351 B

12345678910111213141516171819202122232425
  1. #ifndef __MAPS_H__
  2. #define __MAPS_H__
  3. #include <ros/ros.h>
  4. #include <sensor_msgs/PointCloud.h>
  5. #include "common/def.h"
  6. namespace map {
  7. void init();
  8. MapInfo readMapInfo(std::string map_id);
  9. bool UpdateMap(MapInfo map);
  10. bool DelMap(std::string id);
  11. bool saveMap(MapInfo info);
  12. void pubMap(std::string map_id);
  13. }
  14. #endif