summaryrefslogtreecommitdiff
path: root/TAO/tao/ObjectKey_Table.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2004-04-12 13:56:27 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2004-04-12 13:56:27 +0000
commit8c6bc3da03f785c4a6ed0819afec4f166b2b1714 (patch)
treee9aa8dfc215a5252594d6085e90b0c8a71197b7c /TAO/tao/ObjectKey_Table.h
parent5c4db84da0b9a7b3506bc550d6a41e0ca32aadec (diff)
downloadATCD-8c6bc3da03f785c4a6ed0819afec4f166b2b1714.tar.gz
ChangeLogTag: Mon Apr 12 13:51:42 UTC 2004 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao/ObjectKey_Table.h')
-rw-r--r--TAO/tao/ObjectKey_Table.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tao/ObjectKey_Table.h b/TAO/tao/ObjectKey_Table.h
index 4b418a9fa29..db3027c7d05 100644
--- a/TAO/tao/ObjectKey_Table.h
+++ b/TAO/tao/ObjectKey_Table.h
@@ -35,9 +35,9 @@ namespace TAO
class ObjectKey;
/**
- * @class ObjectKey_Table
+ * @class Less_Than_ObjectKey
*
- * @brief: Compares the length and then the contents of ObjectKeys.
+ * @brief Compares the length and then the contents of ObjectKeys.
*
* Should have been a specialization of the functor
* ACE_Less_Than<sequence<CORBA::Octet>>. But that will not work
@@ -69,13 +69,13 @@ namespace TAO
* to bind () will return a pointer which is expected to be cached
* by the client/caller and use the pointer in every invocation.
*
- * @NOTE: This class uses the ACE_RB_Tree to maintain the table of
+ * @note This class uses the ACE_RB_Tree to maintain the table of
* ObjectKeys. The RB_Tree has good insertion and lookup
* properties. Its Iteration properties are not that good, but we
* dont need to do much iteration unless we are closing down the
* table.
*
- * @NOTE: The reasons to use RB_Tree are its good dynamic
+ * @note The reasons to use RB_Tree are its good dynamic
* properties. We should try to strategize the class to use either a
* Hash_Map or a RB_Tree based on some runtime option. For that we
* need an adapter class in ACE, like an ACE_Lock_Adapter class. We