summaryrefslogtreecommitdiff
path: root/ace/Hash_Map_With_Allocator_T.h
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Hash_Map_With_Allocator_T.h')
-rw-r--r--ace/Hash_Map_With_Allocator_T.h15
1 files changed, 10 insertions, 5 deletions
diff --git a/ace/Hash_Map_With_Allocator_T.h b/ace/Hash_Map_With_Allocator_T.h
index 6ae11547c0c..088956b48a1 100644
--- a/ace/Hash_Map_With_Allocator_T.h
+++ b/ace/Hash_Map_With_Allocator_T.h
@@ -1,4 +1,5 @@
-/* -*- C++ -*- */
+// -*- C++ -*-
+
//=============================================================================
/**
* @file Hash_Map_With_Allocator_T.h
@@ -21,6 +22,8 @@
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
+ACE_BEGIN_VERSIONED_NAMESPACE_DECL
+
/**
* @class ACE_Hash_Map_With_Allocator
*
@@ -53,9 +56,9 @@ public:
ACE_Allocator *alloc);
// = The following methods are Proxies to the corresponding methods
- // in <ACE_Hash_Map_Manager>. Each method sets the allocator to
+ // in ACE_Hash_Map_Manager. Each method sets the allocator to
// the one specified by the invoking entity, and then calls the
- // corresponding method in <ACE_Hash_Map_Manager> to do the
+ // corresponding method in ACE_Hash_Map_Manager to do the
// actual work.
int bind (const EXT_ID &,
@@ -79,13 +82,15 @@ public:
INT_ID &,
ACE_Allocator *alloc);
- /// Returns 0 if the <ext_id> is in the mapping, otherwise -1.
- int find (const EXT_ID &,
+ /// Returns 0 if the @a ext_id is in the mapping, otherwise -1.
+ int find (const EXT_ID &ext_id,
ACE_Allocator *alloc);
int close (ACE_Allocator *alloc);
};
+ACE_END_VERSIONED_NAMESPACE_DECL
+
#if defined (__ACE_INLINE__)
#include "ace/Hash_Map_With_Allocator_T.inl"
#endif /* __ACE_INLINE__ */