Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef FOOTSTEP_PLANNER_PLANNINGSTATECHANGEQUERY_H_
00022 #define FOOTSTEP_PLANNER_PLANNINGSTATECHANGEQUERY_H_
00023
00024
00025 #include <vector>
00026
00027 #include <sbpl/headers.h>
00028
00029
00030 namespace footstep_planner
00031 {
00032 class PlanningStateChangeQuery : public StateChangeQuery
00033 {
00034 public:
00035 PlanningStateChangeQuery(const std::vector<int>& neighbors);
00036 virtual ~PlanningStateChangeQuery();
00037
00038 const std::vector<int>* getPredecessors() const;
00039 const std::vector<int>* getSuccessors() const;
00040
00041 private:
00042 const std::vector<int>& ivNeighbors;
00043 };
00044 }
00045
00046 #endif // FOOTSTEP_PLANNER_PLANNINGSTATECHANGEQUERY_H_