Skip to content
Snippets Groups Projects
Commit ffdc30d0 authored by Joseph Mirabel's avatar Joseph Mirabel Committed by Joseph Mirabel
Browse files

Add operator<< to fix compilation problems.

An operator<< for class Robot already exists in hpp-core
but is queerly not found.
parent ecf9e620
No related branches found
No related tags found
No related merge requests found
......@@ -30,6 +30,11 @@
namespace hpp {
namespace manipulation {
std::ostream& operator<< (std::ostream& os, const Robot& robot)
{
return robot.print (os);
}
void ProblemSolver::buildCompositeRobot (const std::string& robotName,
const Names_t& robotNames)
{
......
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