diff --git a/include/hpp/manipulation/fwd.hh b/include/hpp/manipulation/fwd.hh
index 18947580f6bf55d0dd7e58be695d54d4628a5d97..9cf66ac570efa2562d74b43679691be872d24e45 100644
--- a/include/hpp/manipulation/fwd.hh
+++ b/include/hpp/manipulation/fwd.hh
@@ -121,9 +121,10 @@ namespace hpp {
 
     typedef std::list < NumericalConstraintPtr_t > NumericalConstraints_t;
 
-    typedef std::vector<core::vector3_t> Shape_t;
-    typedef std::pair <JointPtr_t, Shape_t> JointAndShape_t;
-    typedef std::list <JointAndShape_t> JointAndShapes_t;
+    typedef core::Shape_t Shape_t;
+    typedef core::JointAndShape_t JointAndShape_t;
+    typedef core::JointAndShapes_t JointAndShapes_t;
+
     typedef std::list <std::string> StringList_t;
 
     namespace pathOptimization {
diff --git a/include/hpp/manipulation/problem-solver.hh b/include/hpp/manipulation/problem-solver.hh
index f799860ff66dbec2ec0f35192ce0180da5be0d47..3dddc4ebaea1675bfbb7c6d1d2511859435a66fe 100644
--- a/include/hpp/manipulation/problem-solver.hh
+++ b/include/hpp/manipulation/problem-solver.hh
@@ -30,13 +30,9 @@
 namespace hpp {
   namespace manipulation {
     class HPP_MANIPULATION_DLLAPI ProblemSolver :
-      public core::ProblemSolver,
-      public core::Containers <
-        boost::mpl::vector <LockedJointPtr_t, JointAndShapes_t> >
+      public core::ProblemSolver
     {
       public:
-        typedef core::Containers < boost::mpl::vector
-          <LockedJointPtr_t, JointAndShapes_t> > ThisC_t;
         typedef core::ProblemSolver parent_t;
         typedef std::vector <std::string> Names_t;
 
diff --git a/src/graph/helper.cc b/src/graph/helper.cc
index 62c52a72026630d08d6704e00cffa250d5dbba49..83be20905116c9e51c0825b62a5c5fa8d19cac75 100644
--- a/src/graph/helper.cc
+++ b/src/graph/helper.cc
@@ -1091,7 +1091,7 @@ namespace hpp {
               LockedJointPtr_t lj = core::LockedJoint::create (oj,
                   robot.currentConfiguration()
                   .segment (oj->rankInConfiguration (), oj->configSize ()));
-              ps->ProblemSolver::ThisC_t::add <LockedJointPtr_t> ("lock_" + oj->name (), lj);
+              ps->add <LockedJointPtr_t> ("lock_" + oj->name (), lj);
               objects[i].get<0> ().get<2> ().push_back (lj);
             }
             ++i;
diff --git a/src/problem-solver.cc b/src/problem-solver.cc
index 1a9d4c62216a25d2e6dae8d847f5b192bc25fb95..05623aa8b0d565ba0f3d29a62e71dae4fc6a3d36 100644
--- a/src/problem-solver.cc
+++ b/src/problem-solver.cc
@@ -230,8 +230,8 @@ namespace hpp {
         if (robot_->has <JointAndShapes_t> (*it2))
           l = robot_->get <JointAndShapes_t> (*it2);
         // and then environment triangles.
-        else if (ThisC_t::has <JointAndShapes_t> (*it2))
-          l = ThisC_t::get <JointAndShapes_t> (*it2);
+        else if (core::ProblemSolver::has <JointAndShapes_t> (*it2))
+          l = core::ProblemSolver::get <JointAndShapes_t> (*it2);
         else throw std::runtime_error ("Second list of triangles not found.");
         for (JointAndShapes_t::const_iterator it = l.begin ();
             it != l.end(); ++it) {
@@ -278,8 +278,8 @@ namespace hpp {
         if (robot_->has <JointAndShapes_t> (*it2))
           l = robot_->get <JointAndShapes_t> (*it2);
         // and then environment triangles.
-        else if (ThisC_t::has <JointAndShapes_t> (*it2))
-          l = ThisC_t::get <JointAndShapes_t> (*it2);
+        else if (has <JointAndShapes_t> (*it2))
+          l = get <JointAndShapes_t> (*it2);
         else throw std::runtime_error ("Second list of triangles not found.");
 
         for (JointAndShapes_t::const_iterator it = l.begin ();