summaryrefslogtreecommitdiff
path: root/ACE/ace/Map_T.h
diff options
context:
space:
mode:
authormcorino <mcorino@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2011-04-07 11:48:50 +0000
committermcorino <mcorino@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2011-04-07 11:48:50 +0000
commit4e0fbcbede63c844fcb99dc98eee3446dba7d1df (patch)
tree85aab228c3ecabd30f1cec1f04730de4fee1217f /ACE/ace/Map_T.h
parent57a3abab77bf7e53eb868b04cc3159a78357f86e (diff)
downloadATCD-4e0fbcbede63c844fcb99dc98eee3446dba7d1df.tar.gz
Thu Apr 7 11:40:00 UTC 2011 Martin Corino <mcorino@remedy.nl>
Merged changes from Remedy work branch.
Diffstat (limited to 'ACE/ace/Map_T.h')
-rw-r--r--ACE/ace/Map_T.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/ACE/ace/Map_T.h b/ACE/ace/Map_T.h
index e8b97bf09a0..bcb352d3259 100644
--- a/ACE/ace/Map_T.h
+++ b/ACE/ace/Map_T.h
@@ -851,11 +851,11 @@ public:
/// Close down and release dynamically allocated resources.
virtual ~ACE_Active_Map_Manager_Adapter (void);
- /// Initialize a <Map> with size @a length.
+ /// Initialize a Map with size @a length.
virtual int open (size_t length = ACE_DEFAULT_MAP_SIZE,
ACE_Allocator *alloc = 0);
- /// Close down a <Map> and release dynamically allocated resources.
+ /// Close down a Map and release dynamically allocated resources.
virtual int close (void);
/**
@@ -870,11 +870,10 @@ public:
/**
* Add @a key / @a value pair to the map. @a key is an "inout" parameter
* and maybe modified/extended by the map to add additional
- * information. To recover original key, call the <recover_key>
+ * information. To recover original key, call the recover_key()
* method.
*/
- virtual int bind_modify_key (const VALUE &value,
- KEY &key);
+ virtual int bind_modify_key (const VALUE &value, KEY &key);
/**
* Produce a key and return it through @a key which is an "out"
@@ -910,7 +909,7 @@ public:
virtual int bind_create_key (const VALUE &value);
/// Recovers the original key potentially modified by the map during
- /// <bind_modify_key>.
+ /// bind_modify_key().
virtual int recover_key (const KEY &modified_key,
KEY &original_key);