summaryrefslogtreecommitdiff
path: root/ace/Auto_Ptr.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-12-21 19:26:46 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-12-21 19:26:46 +0000
commit9e9254f32711d4ecf1e3f71b54982eaf6845388e (patch)
tree760551d54bece3e52d2f1cd3d05b26d9c1c1439b /ace/Auto_Ptr.h
parent4ecd5d0edb663fdba4935912ccdbbf79a66482ae (diff)
downloadATCD-9e9254f32711d4ecf1e3f71b54982eaf6845388e.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/Auto_Ptr.h')
-rw-r--r--ace/Auto_Ptr.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ace/Auto_Ptr.h b/ace/Auto_Ptr.h
index 14a4730d622..5ac032a2fb7 100644
--- a/ace/Auto_Ptr.h
+++ b/ace/Auto_Ptr.h
@@ -22,10 +22,10 @@
template <class X>
class ACE_Auto_Basic_Ptr
+{
// = TITLE
// Implements the draft C++ standard auto_ptr abstraction.
// This class allows one to work on non-object (basic) types
-{
public:
// = Initialization and termination methods
/* explicit */ ACE_Auto_Basic_Ptr (X *p = 0);
@@ -59,9 +59,9 @@ using std::auto_ptr;
template <class X>
class auto_ptr : public ACE_Auto_Basic_Ptr <X>
+{
// = TITLE
// Implements the draft C++ standard auto_ptr abstraction.
-{
public:
// = Initialization and termination methods
/* explicit */ auto_ptr (X *p = 0);
@@ -73,11 +73,11 @@ public:
template<class X>
class ACE_Auto_Basic_Array_Ptr
+{
// = TITLE
// Implements an extension to the draft C++ standard auto_ptr
// abstraction. This class allows one to work on non-object
// (basic) types
-{
public:
// = Initialization and termination methods.
/* explicit */ ACE_Auto_Basic_Array_Ptr (X *p = 0);
@@ -103,10 +103,10 @@ protected:
template<class X>
class ACE_Auto_Array_Ptr : public ACE_Auto_Basic_Array_Ptr<X>
+{
// = TITLE
// Implements an extension to the draft C++ standard auto_ptr
// abstraction.
-{
public:
// = Initialization and termination methods.
/* explicit */ ACE_Auto_Array_Ptr (X *p = 0);