diff options
Diffstat (limited to 'ace/Map_Manager.h')
-rw-r--r-- | ace/Map_Manager.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/ace/Map_Manager.h b/ace/Map_Manager.h index 4e0ad3f9960..aedccc0d0c0 100644 --- a/ace/Map_Manager.h +++ b/ace/Map_Manager.h @@ -68,11 +68,13 @@ class ACE_Map_Manager // <INT_ID>s. // // = DESCRIPTION - // The <EXT_ID> must support <operator==> (this constraint can - // be alleviated via template specialization). The - // <ACE_Map_Manager> class uses an <ACE_Allocator> to allocate - // memory. The user can make this a persistant class by - // providing an <ACE_Allocator> with a persistable memory pool. + // The <EXT_ID> must support <operator==>. This constraint can + // be alleviated via template specialization, as shown in the + // $ACE_ROOT/tests/Conn_Test.cpp test. + // + // This class uses an <ACE_Allocator> to allocate memory. The + // user can make this a persistant class by providing an + // <ACE_Allocator> with a persistable memory pool. // // This implementation of a map uses an array, which is searched // linearly. For more efficient searching you should use the |