summaryrefslogtreecommitdiff
path: root/ace/Auto_Ptr.h
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1996-10-21 21:41:34 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1996-10-21 21:41:34 +0000
commita5fdebc5f6375078ec1763850a4ca23ec7fe6458 (patch)
treebcf0a25c3d45a209a6e3ac37b233a4812f29c732 /ace/Auto_Ptr.h
downloadATCD-a5fdebc5f6375078ec1763850a4ca23ec7fe6458.tar.gz
Initial revision
Diffstat (limited to 'ace/Auto_Ptr.h')
-rw-r--r--ace/Auto_Ptr.h101
1 files changed, 101 insertions, 0 deletions
diff --git a/ace/Auto_Ptr.h b/ace/Auto_Ptr.h
new file mode 100644
index 00000000000..57251fec225
--- /dev/null
+++ b/ace/Auto_Ptr.h
@@ -0,0 +1,101 @@
+/* -*- C++ -*- */
+// $Id$
+
+
+// ============================================================================
+//
+// = LIBRARY
+// ace
+//
+// = FILENAME
+// Auto_Ptr.h
+//
+// = AUTHOR
+// Doug Schmidt, based on code from Jack Reeves (jack@fx.com) and
+// Dr. Harald M. Mueller (mueller@garwein.hai.siemens.co.at)
+//
+// ============================================================================
+
+#if !defined (ACE_AUTO_PTR_H)
+#define ACE_AUTO_PTR_H
+
+#include "ace/ACE.h"
+
+template <class X>
+class auto_ptr
+ // = TITLE
+ // Implements the draft C++ standard auto_ptr abstraction.
+{
+public:
+ // = Initialization and termination methods
+ auto_ptr (X *p = 0);
+ auto_ptr (auto_ptr<X> &ap);
+ ~auto_ptr (void);
+ void operator= (auto_ptr<X> &rhs);
+
+ // = Accessor methods.
+ X &operator *() const;
+ X *operator-> () const;
+ X *get (void) const;
+ X *release (void);
+ X *reset (X *p);
+
+ static void remove (X* &x);
+
+ void dump (void) const;
+ // Dump the state of an object.
+
+ ACE_ALLOC_HOOK_DECLARE;
+ // Declare the dynamic allocation hooks.
+
+private:
+ X *p_;
+};
+
+template<class X>
+class auto_array_ptr
+ // = TITLE
+ // Implements an extension to the draft C++ standard auto_ptr
+ // abstraction.
+{
+public:
+ // = Initialization and termination methods.
+ auto_array_ptr (X *p = 0);
+ auto_array_ptr (auto_array_ptr<X> &ap);
+ ~auto_array_ptr (void);
+ void operator= (auto_array_ptr<X> &rhs);
+
+ // = Accessor methods.
+ X &operator* ();
+ X *operator-> ();
+ X &operator[] (int i);
+ X operator[] (int i) const;
+ X *get (void) const;
+ X *release (void);
+ X *reset (X *p);
+
+ static void remove (X *&x);
+
+ void dump (void) const;
+ // Dump the state of an object.
+
+ ACE_ALLOC_HOOK_DECLARE;
+ // Declare the dynamic allocation hooks.
+
+private:
+ X *p_;
+};
+
+#if defined (__ACE_INLINE__)
+#include "ace/Auto_Ptr.i"
+#endif /* __ACE_INLINE__ */
+
+#if defined (ACE_TEMPLATES_REQUIRE_SOURCE)
+#include "ace/Auto_Ptr.cpp"
+#endif /* ACE_TEMPLATES_REQUIRE_SOURCE */
+
+#if defined (ACE_TEMPLATES_REQUIRE_PRAGMA)
+#pragma implementation ("Auto_Ptr.cpp")
+#endif /* ACE_TEMPLATES_REQUIRE_PRAGMA */
+
+#endif /* ACE_AUTO_PTR_H */