summaryrefslogtreecommitdiff
path: root/TAO/tao/Tagged_Profile.i
blob: cccf1d2146354f672a125d57b8db206335949b8c (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
38
39
40
41
42
43
44
45
46
// -*- C++ -*-
// $Id$

ACE_INLINE 
TAO_Tagged_Profile::TAO_Tagged_Profile (TAO_ORB_Core *orb_core)
  : orb_core_ (orb_core),
    object_key_ (),
    profile_ (),
    addr_info_ ()
{

}


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

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

ACE_INLINE void
TAO_Tagged_Profile::object_key (TAO_ObjectKey &object_key)
{
  this->object_key_.replace (object_key.length (),
                             object_key.length (),
                             object_key.get_buffer ());

}

ACE_INLINE IOP::TaggedProfile &
TAO_Tagged_Profile::tagged_profile (void)
{
  return this->profile_;
}

ACE_INLINE GIOP::IORAddressingInfo &
TAO_Tagged_Profile::addressing_info (void)
{
  return this->addr_info_;
}