id summary reporter owner description type status milestone component version severity resolution keywords cc 6896 Support std::shared_ptr Maciej Dems Ralf W. Grosse-Kunstleve "In C++0x standard, there is a ne0w std::shared_ptr class, which is very similar to boost::shared_ptr. As in Boost Python one can require to use boost::shared_ptr to store the object, i.e. class_< A, boost::shared_ptr > it should be possible to use std::shared_ptr for the same purpose: class_< A, std::shared_ptr > In the present version, the code using std::shared_ptr does not compile. However, it seems that it might be sufficient to add the following template somewhere in the headers (ifdef-ed for c++0x): #include template inline T * get_pointer(std::shared_ptr const & p) { return p.get(); }" Feature Requests closed To Be Determined python USE GITHUB Boost 1.49.0 Problem duplicate jhasse@…