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

Make Device Container protected

parent 07cf9be0
No related branches found
No related tags found
No related merge requests found
/// ///
/// Copyright (c) 2014 CNRS /// Copyright (c) 2014 CNRS
/// Authors: Florent Lamiraux /// Authors: Florent Lamiraux, Joseph Mirabel
/// ///
/// ///
// This file is part of hpp-manipulation. // This file is part of hpp-manipulation.
...@@ -35,10 +35,10 @@ namespace hpp { ...@@ -35,10 +35,10 @@ namespace hpp {
/// ///
/// This class also contains model::Gripper, Handle and \ref JointAndTriangles_t /// This class also contains model::Gripper, Handle and \ref JointAndTriangles_t
class HPP_MANIPULATION_DLLAPI Device : public model::HumanoidRobot, class HPP_MANIPULATION_DLLAPI Device : public model::HumanoidRobot,
public core::Container <HandlePtr_t>, protected core::Container <HandlePtr_t>,
public core::Container <model::GripperPtr_t>, protected core::Container <model::GripperPtr_t>,
public core::Container <JointAndShapes_t>, protected core::Container <JointAndShapes_t>,
public core::Container <model::JointVector_t> protected core::Container <model::JointVector_t>
{ {
public: public:
typedef model::HumanoidRobot Parent_t; typedef model::HumanoidRobot Parent_t;
......
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