5#ifndef __pinocchio_python_utils_registration_hpp__
6#define __pinocchio_python_utils_registration_hpp__
8#include <eigenpy/registration.hpp>
16 inline bool register_symbolic_link_to_registered_type()
18 namespace bp = boost::python;
19 if (eigenpy::check_registration<T>())
21 const bp::type_info info = bp::type_id<T>();
22 const bp::converter::registration * reg = bp::converter::registry::query(info);
23 bp::handle<> class_obj(bp::borrowed(reg->get_class_object()));
24 bp::scope().attr(reg->get_class_object()->tp_name) = bp::object(class_obj);
Main pinocchio namespace.