From bd32dce19afc8adad415579dfd0ee10aa92d4cf1 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Wed, 8 May 2002 03:59:53 +0000 Subject: [PATCH] *** empty log message *** [SVN r13738] --- doc/v2/ptr.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/v2/ptr.html b/doc/v2/ptr.html index d404ba1a..3b68451b 100644 --- a/doc/v2/ptr.html +++ b/doc/v2/ptr.html @@ -128,7 +128,7 @@ pointer_wrapper<T> ptr(T x);

Class pointer_wrapper synopsis

-namespace boost
+namespace boost { namespace python
 {
     template<class Ptr> class pointer_wrapper
     { 
@@ -139,7 +139,7 @@ namespace boost
         operator Ptr() const;
         Ptr get() const;
     };
-};
+}}
 

Class template pointer_wrapper types

@@ -182,13 +182,13 @@ Ptr get() const;

Class template is_pointer_wrapper synopsis

-namespace boost
+namespace boost { namespace python
 {
     template<class T> class is_pointer_wrapper
     { 
         static unspecified value = ...;
     };
-};
+}}
 
@@ -208,13 +208,13 @@ specialization of pointer_wrapper<>.

Class template unwrap_pointer synopsis

-namespace boost
+namespace boost { namespace python
 {
     template<class T> class unwrap_pointer
     { 
         typedef unspecified type;
     };
-};
+}}