blob: 8bcf332a83540eb955170b3d3b15430a51578e2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// $Id$
#include "tao/Connection_Purging_Strategy.h"
#if !defined (__ACE_INLINE__)
# include "tao/Connection_Purging_Strategy.inl"
#endif /* __ACE_INLINE__ */
ACE_RCSID (tao,
Connection_Purging_Strategy,
"$Id$")
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
TAO_Connection_Purging_Strategy::~TAO_Connection_Purging_Strategy (void)
{
}
int
TAO_Connection_Purging_Strategy::cache_maximum (void) const
{
return cache_maximum_;
}
TAO_END_VERSIONED_NAMESPACE_DECL
|