From 162727590c74bc7dd17c037b3b1f04a73cad8763 Mon Sep 17 00:00:00 2001 From: Bruno da Silva de Oliveira Date: Tue, 15 Jul 2003 01:05:07 +0000 Subject: [PATCH] - moved register_ptr_to_python up one level. [SVN r19123] --- doc/v2/register_ptr_to_python.html | 6 +++--- include/boost/python.hpp | 4 ++-- .../boost/python/{converter => }/register_ptr_to_python.hpp | 0 3 files changed, 5 insertions(+), 5 deletions(-) rename include/boost/python/{converter => }/register_ptr_to_python.hpp (100%) 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