diff --git a/doc/v2/register_ptr_to_python.html b/doc/v2/register_ptr_to_python.html index 67e765ad..68a0737e 100644 --- a/doc/v2/register_ptr_to_python.html +++ b/doc/v2/register_ptr_to_python.html @@ -33,7 +33,7 @@

Introduction

- <boost/python/converter/register_ptr_to_python.hpp> + <boost/python/register_ptr_to_python.hpp> supplies register_ptr_to_python, a function template which registers a conversion for smart pointers to Python. The resulting Python object holds a copy of the converted smart pointer, @@ -48,8 +48,8 @@ smart_ptr<X>& (non-const reference), the embedded C++ object must be held by smart_ptr<X>, and that when wrapped objects are created by calling the constructor from Python, how they are held - is determined by the HeldType parameter to class_<...> - instances. + is determined by the HeldType parameter to + class_<...> instances.

Functions

diff --git a/include/boost/python.hpp b/include/boost/python.hpp index 5df41117..62480b70 100644 --- a/include/boost/python.hpp +++ b/include/boost/python.hpp @@ -43,13 +43,14 @@ # include # include # include -# include # include +# include # include # include # include # include # include +# include # include # include # include @@ -63,6 +64,5 @@ # include # include # include -# include #endif // PYTHON_DWA2002810_HPP diff --git a/include/boost/python/converter/register_ptr_to_python.hpp b/include/boost/python/register_ptr_to_python.hpp similarity index 100% rename from include/boost/python/converter/register_ptr_to_python.hpp rename to include/boost/python/register_ptr_to_python.hpp