PlanningStateChangeQuery.h
Go to the documentation of this file.
1 /*
2  * A footstep planner for humanoid robots
3  *
4  * Copyright 2010-2011 Johannes Garimort, Armin Hornung, University of Freiburg
5  * http://www.ros.org/wiki/footstep_planner
6  *
7  *
8  * This program is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation, version 3.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  */
20 
21 #ifndef FOOTSTEP_PLANNER_PLANNINGSTATECHANGEQUERY_H_
22 #define FOOTSTEP_PLANNER_PLANNINGSTATECHANGEQUERY_H_
23 
24 
25 #include <vector>
26 
27 #include <sbpl/headers.h>
28 
29 
30 namespace footstep_planner
31 {
32 class PlanningStateChangeQuery : public StateChangeQuery
33 {
34 public:
35  PlanningStateChangeQuery(const std::vector<int>& neighbors);
36  virtual ~PlanningStateChangeQuery();
37 
38  const std::vector<int>* getPredecessors() const;
39  const std::vector<int>* getSuccessors() const;
40 
41 private:
42  const std::vector<int>& ivNeighbors;
43 };
44 }
45 
46 #endif // FOOTSTEP_PLANNER_PLANNINGSTATECHANGEQUERY_H_
PlanningStateChangeQuery(const std::vector< int > &neighbors)
const std::vector< int > * getPredecessors() const
const std::vector< int > * getSuccessors() const


footstep_planner
Author(s): Johannes Garimort, Armin Hornung
autogenerated on Mon Jun 10 2019 13:38:24