diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2002-04-23 05:45:46 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2002-04-23 05:45:46 +0000 |
commit | f11af315a587548a98f1aa8a75ce0e77c37d3272 (patch) | |
tree | 5707669ee042b2ae2149fec62b4694055c52a603 /ace/Object_Manager.h | |
parent | 82e9fedfa017c5e8dce272124fdbbae97606d98b (diff) | |
download | ATCD-f11af315a587548a98f1aa8a75ce0e77c37d3272.tar.gz |
ChangeLogTag: Tue Apr 23 07:38:12 2002 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ace/Object_Manager.h')
-rw-r--r-- | ace/Object_Manager.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/ace/Object_Manager.h b/ace/Object_Manager.h index 1524981f5a0..d8e4abc80b8 100644 --- a/ace/Object_Manager.h +++ b/ace/Object_Manager.h @@ -250,6 +250,9 @@ public: void *param); #endif /* 0 */ + /// Unique identifiers for preallocated objects. Please see + /// ace/Managed_Object.h for information on accessing preallocated + /// objects. enum Preallocated_Object { ACE_FILECACHE_LOCK, @@ -275,26 +278,23 @@ public: ACE_PREALLOCATED_OBJECTS // This enum value must be last! }; - // Unique identifiers for preallocated objects. Please see - // ace/Managed_Object.h for information on accessing preallocated - // objects. + /// Unique identifiers for preallocated arrays. Please see + /// ace/Managed_Object.h for information on accessing preallocated + /// arrays. enum Preallocated_Array { - // There currently are no preallocated arrays in the ACE - // library. If the application doesn't have any, make sure - // the the preallocated_array size is at least one by declaring - // this dummy . . . + /// There currently are no preallocated arrays in the ACE + /// library. If the application doesn't have any, make sure + /// the the preallocated_array size is at least one by declaring + /// this dummy . . . ACE_EMPTY_PREALLOCATED_ARRAY, - // Hook for preallocated arrays provided by application. + /// Hook for preallocated arrays provided by application. ACE_APPLICATION_PREALLOCATED_ARRAY_DECLARATIONS ACE_PREALLOCATED_ARRAYS // This enum value must be last! }; - // Unique identifiers for preallocated arrays. Please see - // ace/Managed_Object.h for information on accessing preallocated - // arrays. /** * @deprecated Accesses a default signal set used, for example, |