summaryrefslogtreecommitdiff
path: root/ace/Object_Manager.h
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-07-12 21:51:04 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-07-12 21:51:04 +0000
commit1d3b607f2862df1a5ad891e26fdb98ec81ddc4d1 (patch)
tree9d60a8d48fb4e17f74211d263285c85478fe80f9 /ace/Object_Manager.h
parent8301abe4c7e8a2cab8e7d876ec5244bf03b626f3 (diff)
downloadATCD-1d3b607f2862df1a5ad891e26fdb98ec81ddc4d1.tar.gz
Updated comments regarding non-static object managers.
Diffstat (limited to 'ace/Object_Manager.h')
-rw-r--r--ace/Object_Manager.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/ace/Object_Manager.h b/ace/Object_Manager.h
index e7aa124cc19..6d0134f0dea 100644
--- a/ace/Object_Manager.h
+++ b/ace/Object_Manager.h
@@ -173,13 +173,15 @@ class ACE_Export ACE_Object_Manager : public ACE_Object_Manager_Base
// doesn't destroy automatic objects, and for developing the
// recommendations in this paragraph.
//
- // Instead of creating a static ACE_Object_Manager, or creating
- // it on the stack of main (), another alternative is to #define
+ // Instead of creating a static ACE_Object_Manager, or letting
+ // ACE create it on the stack of main () for you, another
+ // alternative is to #define
// ACE_DOESNT_INSTANTIATE_NONSTATIC_OBJECT_MANAGER. With that
// #define, the application must create the ACE_Object_Manager.
- // The recommended way is to call ACE::init () at the start of the
- // program, and call ACE::fini () at the end. Alternatively, the
- // application could explicity construct an ACE_Object_Manager.
+ // The recommended way is to call ACE::init () at the start of
+ // the program, and call ACE::fini () at the end.
+ // Alternatively, the application could explicity construct an
+ // ACE_Object_Manager.
public:
virtual int init (void);