summaryrefslogtreecommitdiff
path: root/TAO/tao/Strategies/DIOP_Profile.i
blob: 2c18a75ae9279af7302178c2a63334b0811ade08 (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
// -*- C++ -*-
// $Id$

ACE_INLINE const TAO_ObjectKey &
TAO_DIOP_Profile::object_key (void) const
{
  return this->object_key_;
}

ACE_INLINE TAO_ObjectKey *
TAO_DIOP_Profile::_key (void) const
{
  TAO_ObjectKey *key = 0;

  ACE_NEW_RETURN (key,
                  TAO_ObjectKey (this->object_key_),
                  0);

  return key;
}