summaryrefslogtreecommitdiff
path: root/ace/Caching_Utility_T.h
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Caching_Utility_T.h')
-rw-r--r--ace/Caching_Utility_T.h18
1 files changed, 7 insertions, 11 deletions
diff --git a/ace/Caching_Utility_T.h b/ace/Caching_Utility_T.h
index 0112e3f2b7d..03b95ce3cd1 100644
--- a/ace/Caching_Utility_T.h
+++ b/ace/Caching_Utility_T.h
@@ -27,8 +27,6 @@
// For linkers that cant grok long names.
#define ACE_Pair_Caching_Utility APUTIL
-ACE_BEGIN_VERSIONED_NAMESPACE_DECL
-
/**
* @class ACE_Pair_Caching_Utility
*
@@ -36,7 +34,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL
*
* This class defines the methods commonly used by the different
* caching strategies. For instance: <clear_cache> method which
- * decides and purges the entry from the container. @note This
+ * decides and purges the entry from the container. Note: This
* class helps in the caching_strategies using a container
* containing entries of <KEY, ACE_Pair<VALUE, attributes>>
* kind. The attributes helps in deciding the entries to be
@@ -92,7 +90,7 @@ protected:
*
* This class defines the methods commonly used by the different
* caching strategies. For instance: <clear_cache> method which
- * decides and purges the entry from the container. @note This
+ * decides and purges the entry from the container. Note: This
* class helps in the caching_strategies using a container
* containing entries of <KEY, Svc_Handler> kind. The attributes
* helps in deciding the entries to be purged. The
@@ -151,7 +149,7 @@ private:
*
* This class defines the methods commonly used by the different
* caching strategies. For instance: clear_cache () method which
- * decides and purges the entry from the container. @note This
+ * decides and purges the entry from the container. Note: This
* class helps in the caching_strategies using a container
* containing entries of <Refcounted_KEY,
* Recyclable_Connection_Handler> kind. The attributes helps in
@@ -217,7 +215,7 @@ private:
*
* This class defines the methods commonly used by the different
* caching strategies. For instance: <clear_cache> method which
- * decides and purges the entry from the container. @note This
+ * decides and purges the entry from the container. Note: This
* class helps in the caching_strategies using a container
* containing entries of <KEY, HANDLER> kind where the HANDLER
* contains the caching attributes which help in deciding the
@@ -280,7 +278,7 @@ private:
*
* This class defines the methods commonly used by the different
* caching strategies. For instance: <clear_cache> method which
- * decides and purges the entry from the container. @note This
+ * decides and purges the entry from the container. Note: This
* class is be used with the Null_Caching_Strategy. The
* Cleanup_Strategy is the callback class to which the entries to
* be cleaned up will be delegated.
@@ -303,7 +301,7 @@ public:
/**
* Purge entries from the <container>. The Cleanup_Strategy will do
* the actual job of cleanup once the entries to be cleaned up are
- * decided. @note Here it is a no-op.
+ * decided. Note: Here it is a no-op.
*/
int clear_cache (CONTAINER &container,
double purge_percent);
@@ -314,7 +312,7 @@ protected:
* Find the entry with minimum caching attributes. This is handler
* specific since this utility is to be used very specifically for
* handler who have caching_attributes for server side acched
- * connection management.@note Here it is a no-op.
+ * connection management.Note: Here it is a no-op.
*/
void minimum (CONTAINER &container,
KEY *&key_to_remove,
@@ -332,8 +330,6 @@ private:
ACE_UNIMPLEMENTED_FUNC (ACE_Null_Caching_Utility (const ACE_Null_Caching_Utility<KEY,VALUE,CONTAINER,ITERATOR,ATTRIBUTES> &))
};
-ACE_END_VERSIONED_NAMESPACE_DECL
-
#if defined (ACE_TEMPLATES_REQUIRE_SOURCE)
#include "ace/Caching_Utility_T.cpp"
#endif /* ACE_TEMPLATES_REQUIRE_SOURCE */