blob: 077e91172865063dfab684061e45c44d95a5e92b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// -*- C++ -*-
// $Id$
ACE_INLINE const TAO_ObjectKey &
TAO_SHMIOP_Profile::object_key (void) const
{
return this->object_key_;
}
ACE_INLINE TAO_ObjectKey *
TAO_SHMIOP_Profile::_key (void) const
{
TAO_ObjectKey *key = 0;
ACE_NEW_RETURN (key,
TAO_ObjectKey (this->object_key_),
0);
return key;
}
|