00001 #ifndef _ASTAR_H 00002 #define _ASTAR_H 00003 00016 #include <star.h> 00017 #include <motion_chain.h> 00018 class OGrid; 00020 00029 class AStar : public Star 00030 { 00031 public: 00033 AStar(OGrid* grid); 00042 bool search(motion_chain & path, motion start, motion goal); 00043 protected: 00044 AStar(void); 00045 }; 00046 #endif
1.3