summaryrefslogtreecommitdiff
path: root/TAO/tao/Pluggable.i
blob: 4fcf113b6e69da6f325376c1543674ac05789d4f (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$

ACE_INLINE
TAO_Profile::TAO_Profile (void)
  :  forward_to_ (0)
{
}

ACE_INLINE void
TAO_Profile::forward_to (TAO_MProfile *mprofiles)
{
  this->forward_to_ = mprofiles;
}

ACE_INLINE TAO_MProfile *
TAO_Profile::forward_to (void)
{
  return this->forward_to_;
}

ACE_INLINE TAO_MProfile *
TAO_Profile::forward_to_i (void)
{
  return this->forward_to_;
}