Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Humanoid Path Planner
hpp-model
Commits
c79e0e18
Commit
c79e0e18
authored
Aug 31, 2015
by
Florent Lamiraux
Browse files
Move Gripper::operator<< into namespace hpp::model.
parent
26fda7a0
Changes
2
Hide whitespace changes
Inline
Side-by-side
include/hpp/model/gripper.hh
View file @
c79e0e18
...
...
@@ -172,9 +172,8 @@ namespace hpp {
/// Weak pointer to itself
GripperWkPtr_t
weakPtr_
;
};
// class Gripper
std
::
ostream
&
operator
<<
(
std
::
ostream
&
os
,
const
Gripper
&
gripper
);
}
// namespace model
}
// namespace hpp
std
::
ostream
&
operator
<<
(
std
::
ostream
&
os
,
const
hpp
::
model
::
Gripper
&
gripper
);
#endif // HPP_MODEL_GRIPPER_HH
src/gripper.cc
View file @
c79e0e18
...
...
@@ -52,11 +52,10 @@ namespace hpp {
return
os
;
}
}
// namespace model
}
// namespace hpp
std
::
ostream
&
operator
<<
(
std
::
ostream
&
os
,
const
hpp
::
model
::
Gripper
&
gripper
)
std
::
ostream
&
operator
<<
(
std
::
ostream
&
os
,
const
Gripper
&
gripper
)
{
return
gripper
.
print
(
os
);
}
}
// namespace model
}
// namespace hpp
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment