Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tao / Strategies / NULL_Connection_Purging_Strategy.cpp
blob0aa3c9a7d608a0a7819554993baa24ece65f9db8
1 #include "tao/Strategies/NULL_Connection_Purging_Strategy.h"
2 #include "tao/Transport.h"
4 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
6 TAO_NULL_Connection_Purging_Strategy::TAO_NULL_Connection_Purging_Strategy (
7 int cache_maximum)
8 : TAO_Connection_Purging_Strategy (cache_maximum)
12 void
13 TAO_NULL_Connection_Purging_Strategy::update_item (TAO_Transport&)
17 int
18 TAO_NULL_Connection_Purging_Strategy::cache_maximum () const
20 return -1;
23 TAO_END_VERSIONED_NAMESPACE_DECL