diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-06-25 00:24:49 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-06-25 00:24:49 +0000 |
commit | 5b4b15f2f18fdd76fd22011bfa27b2f211e3119c (patch) | |
tree | ac23a7f1dab87302b7b51a64056d1bf7c4fa5055 /ace/Cache_Map_Manager_T.h | |
parent | fa55f6d7743f804d87c401fd91739b6111dfca50 (diff) | |
download | ATCD-5b4b15f2f18fdd76fd22011bfa27b2f211e3119c.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/Cache_Map_Manager_T.h')
-rw-r--r-- | ace/Cache_Map_Manager_T.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/ace/Cache_Map_Manager_T.h b/ace/Cache_Map_Manager_T.h index 6d1c29f52fd..5e22bc0271e 100644 --- a/ace/Cache_Map_Manager_T.h +++ b/ace/Cache_Map_Manager_T.h @@ -69,15 +69,15 @@ public: friend class ACE_Cache_Map_Reverse_Iterator<KEY, VALUE, REVERSE_ITERATOR_IMPLEMENTATION, CACHING_STRATEGY, ATTRIBUTES>; // = ACE-style iterator typedefs. - typedef ACE_Cache_Map_Iterator<KEY, VALUE, ITERATOR_IMPLEMENTATION, CACHING_STRATEGY, ATTRIBUTES> + typedef ACE_Cache_Map_Iterator<KEY, VALUE, ITERATOR_IMPLEMENTATION, CACHING_STRATEGY, ATTRIBUTES> ITERATOR; - typedef ACE_Cache_Map_Reverse_Iterator<KEY, VALUE, REVERSE_ITERATOR_IMPLEMENTATION, CACHING_STRATEGY, ATTRIBUTES> + typedef ACE_Cache_Map_Reverse_Iterator<KEY, VALUE, REVERSE_ITERATOR_IMPLEMENTATION, CACHING_STRATEGY, ATTRIBUTES> REVERSE_ITERATOR; // = STL-style iterator typedefs. - typedef ITERATOR + typedef ITERATOR iterator; - typedef REVERSE_ITERATOR + typedef REVERSE_ITERATOR reverse_iterator; // = Initialization and termination methods. @@ -187,7 +187,7 @@ public: MAP &map (void); // The map managed by the Cache_Map_Manager. - CACHING_STRATEGY *caching_strategy (void); + CACHING_STRATEGY &caching_strategy (void); // The caching strategy used on the cache. protected: @@ -216,9 +216,9 @@ class ACE_Cache_Map_Iterator public: // = Traits. - typedef ACE_Reference_Pair<KEY, VALUE> + typedef ACE_Reference_Pair<KEY, VALUE> value_type; - typedef ACE_Pair <VALUE, ATTRIBUTES> + typedef ACE_Pair <VALUE, ATTRIBUTES> CACHE_VALUE; // The actual value mapped to the key in the cache. The <attributes> // are used by the strategy and is transperant to the cache user. @@ -234,7 +234,7 @@ public: // = Iteration methods. - ACE_Cache_Map_Iterator <KEY, VALUE, IMPLEMENTATION, + ACE_Cache_Map_Iterator <KEY, VALUE, IMPLEMENTATION, CACHING_STRATEGY, ATTRIBUTES> &operator= (const ACE_Cache_Map_Iterator<KEY, VALUE, IMPLEMENTATION, CACHING_STRATEGY, ATTRIBUTES> &rhs); |