astar.h 254 B

1234567891011121314151617
  1. #ifndef __MAP_ASTAR_H__
  2. #define __MAP_ASTAR_H__
  3. #include "common/def.h"
  4. namespace map {
  5. void setPaths(std::map<std::string, MapPath> path);
  6. bool plan(std::string start, std::string end, std::vector<std::string> &plan);
  7. } // namespace map
  8. #endif