Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / TAO / tao / LRU_Connection_Purging_Strategy.cpp
blob57482d1a29fe8cdd2d46514459be1134e7989b17
1 #include "tao/LRU_Connection_Purging_Strategy.h"
2 #include "tao/Transport.h"
4 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
6 TAO_LRU_Connection_Purging_Strategy::TAO_LRU_Connection_Purging_Strategy (
7 int cache_maximum)
8 : TAO_Connection_Purging_Strategy (cache_maximum),
9 order_ (0)
14 TAO_LRU_Connection_Purging_Strategy::~TAO_LRU_Connection_Purging_Strategy ()
19 void
20 TAO_LRU_Connection_Purging_Strategy::update_item (TAO_Transport& transport)
22 transport.purging_order (++this->order_);
25 TAO_END_VERSIONED_NAMESPACE_DECL