Skip to content
Snippets Groups Projects
Commit 6cd5bcb7 authored by Florent Lamiraux's avatar Florent Lamiraux Committed by Florent Lamiraux florent@laas.fr
Browse files

[Graph] Create default StateSelector at construction.

parent 9733d51f
No related branches found
No related tags found
No related merge requests found
......@@ -21,6 +21,7 @@
# include <ostream>
# include "hpp/manipulation/config.hh"
# include "hpp/manipulation/deprecated.hh"
# include "hpp/manipulation/fwd.hh"
# include "hpp/manipulation/graph/fwd.hh"
# include "hpp/manipulation/graph/dot.hh"
......
......@@ -238,9 +238,7 @@ namespace hpp {
/// Constructor
/// \param sm a steering method to create paths from edges
Graph (const std::string& name, const ProblemPtr_t& problem) :
GraphComponent (name), problem_ (problem)
{}
Graph (const std::string& name, const ProblemPtr_t& problem);
/// Print the object in a stream.
std::ostream& print (std::ostream& os) const;
......
......@@ -35,6 +35,7 @@ namespace hpp {
Graph* ptr = new Graph (name, problem);
GraphPtr_t shPtr (ptr);
ptr->init (shPtr, robot);
shPtr->createStateSelector (name);
return shPtr;
}
......@@ -242,6 +243,11 @@ namespace hpp {
return components_;
}
Graph::Graph (const std::string& name, const ProblemPtr_t& problem) :
GraphComponent (name), problem_ (problem)
{
}
std::ostream& Graph::dotPrint (std::ostream& os, dot::DrawingAttributes da) const
{
da.separator = "; ";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment