summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/PortableGroup/Fragments_Cleanup_Strategy.inl
blob: 0cb2424d222d814f4727f178946906f713850fa1 (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
26
27
28
29
30
31
32
33
34
35
36
37
// -*- C++ -*-
//
// $Id$

TAO_BEGIN_VERSIONED_NAMESPACE_DECL

namespace TAO_PG
{
  ACE_INLINE
  Fragments_Cleanup_Strategy::Fragments_Cleanup_Strategy (int bound)
    : bound_ (bound)
  {
  }

  ACE_INLINE
  Time_Bound_Fragments_Cleanup_Strategy::
    Time_Bound_Fragments_Cleanup_Strategy (int bound)
    : Fragments_Cleanup_Strategy (bound)
  {
  }

  ACE_INLINE
  Number_Bound_Fragments_Cleanup_Strategy::
    Number_Bound_Fragments_Cleanup_Strategy (int bound)
    : Fragments_Cleanup_Strategy (bound)
  {
  }

  ACE_INLINE
  Memory_Bound_Fragments_Cleanup_Strategy::
    Memory_Bound_Fragments_Cleanup_Strategy (int bound)
    : Fragments_Cleanup_Strategy (bound)
  {
  }
} // namespace TAO_PG

TAO_END_VERSIONED_NAMESPACE_DECL