summaryrefslogtreecommitdiff
path: root/TAO/tao/IIOP_Profile.i
blob: c6b0657e10ed52eb5432fe9fbcf3479e4ab3055f (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_IIOP_Profile::object_key (void) const
{
  return this->object_key_;
}

ACE_INLINE TAO::ObjectKey *
TAO_IIOP_Profile::_key (void) const
{
  TAO::ObjectKey *key = 0;

  ACE_NEW_RETURN (key,
                  TAO::ObjectKey (this->object_key_),
                  0);

  return key;
}