#ifndef __MAP_ASTAR_H__ #define __MAP_ASTAR_H__ #include "common/def.h" namespace map { void setPaths(std::map path); bool plan(std::string start, std::string end, std::vector &plan); } // namespace map #endif