summaryrefslogtreecommitdiff
path: root/ACE/ace/Active_Map_Manager_T.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2009-02-03 19:46:05 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2009-02-03 19:46:05 +0000
commit64e50d000d5e189c47416da8e542c554d33f931f (patch)
treeb05363f382283b9757202be6e4ac2c8d3c599c97 /ACE/ace/Active_Map_Manager_T.h
parent4b6356b8f80b8e23aeb90fa0e59f05411272dff2 (diff)
downloadATCD-64e50d000d5e189c47416da8e542c554d33f931f.tar.gz
Tue Feb 3 19:45:17 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Acceptor.h: * ace/Active_Map_Manager_T.h: * ace/CDR_Stream.h: * ace/Configuration.h: * ace/Connector.h: * ace/Dev_Poll_Reactor.h: * ace/Dirent.h: * ace/Map_T.h: * ace/Message_Block.h: * ace/Message_Queue_Vx.h: * ace/Name_Request_Reply.h: * ace/Reactor.h: * ace/Reactor_Impl.h: * ace/Select_Reactor_Base.h: * ace/Select_Reactor_T.h: * ace/Strategies_T.h: * ace/WFMO_Reactor.h: Doxygen changes * ace/Unbounded_Queue.h: * ace/Unbounded_Queue.inl: Use bool
Diffstat (limited to 'ACE/ace/Active_Map_Manager_T.h')
-rw-r--r--ACE/ace/Active_Map_Manager_T.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/ACE/ace/Active_Map_Manager_T.h b/ACE/ace/Active_Map_Manager_T.h
index 34b5a475652..2ab3d35e1e6 100644
--- a/ACE/ace/Active_Map_Manager_T.h
+++ b/ACE/ace/Active_Map_Manager_T.h
@@ -53,22 +53,22 @@ public:
typedef REVERSE_ITERATOR reverse_iterator;
// = Initialization and termination methods.
- /// Initialize a <Active_Map_Manager> with the ACE_DEFAULT_MAP_SIZE.
+ /// Initialize a Active_Map_Manager with the ACE_DEFAULT_MAP_SIZE.
ACE_Active_Map_Manager (ACE_Allocator *alloc = 0);
- /// Initialize a <Active_Map_Manager> with @a size entries.
+ /// Initialize a Active_Map_Manager with @a size entries.
ACE_Active_Map_Manager (size_t size,
ACE_Allocator *alloc = 0);
- /// Close down a <Active_Map_Manager> and release dynamically
+ /// Close down a Active_Map_Manager and release dynamically
/// allocated resources.
~ACE_Active_Map_Manager (void);
- /// Initialize a <Active_Map_Manager> with size @a length.
+ /// Initialize a Active_Map_Manager with size @a length.
int open (size_t length = ACE_DEFAULT_MAP_SIZE,
ACE_Allocator *alloc = 0);
- /// Close down a <Active_Map_Manager> and release dynamically
+ /// Close down a Active_Map_Manager and release dynamically
/// allocated resources.
int close (void);
@@ -84,8 +84,8 @@ public:
/**
* Reserves a slot in the internal structure and returns the key and
* a pointer to the value. User should place their @a value into
- * <*internal_value>. This method is useful in reducing the number
- * of copies required in some cases. Note that <internal_value> is
+ * @a internal_value. This method is useful in reducing the number
+ * of copies required in some cases. Note that @a internal_value is
* only a temporary pointer and will change when the map resizes.
* Therefore, the user should use the pointer immediately and not
* hold on to it.
@@ -126,8 +126,8 @@ public:
/**
* Locate @a value associated with @a key. The value is returned via
- * <internal_value> and hence a copy is saved. Note that
- * <internal_value> is only a temporary pointer and will change when
+ * @a internal_value and hence a copy is saved. Note that
+ * @a internal_value is only a temporary pointer and will change when
* the map resizes. Therefore, the user should use the pointer
* immediately and not hold on to it.
*/
@@ -148,8 +148,8 @@ public:
/**
* Locate @a value associated with @a key. The value is returned via
- * <internal_value> and hence a copy is saved. Note that
- * <internal_value> is only a temporary pointer and will change when
+ * @a internal_value and hence a copy is saved. Note that
+ * @a internal_value is only a temporary pointer and will change when
* the map resizes or when this slot is reused. Therefore, the user
* should use the pointer immediately and not hold on to it.
*/