blob: 45f520ecaf6207089ed2c2c354ad56f6ba78e2fa (
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
47
48
|
// -*- C++ -*-
// $Id$
# if TAO_HAS_UIOP == 1
ACE_INLINE const TAO_ObjectKey &
TAO_UIOP_Profile::object_key (void) const
{
return this->object_key_;
}
ACE_INLINE TAO_ObjectKey *
TAO_UIOP_Profile::_key (void) const
{
TAO_ObjectKey *key = 0;
ACE_NEW_RETURN (key,
TAO_ObjectKey (this->object_key_),
0);
return key;
}
ACE_INLINE const ACE_UNIX_Addr&
TAO_UIOP_Profile::object_addr (void) const
{
return this->object_addr_;
}
ACE_INLINE const char *
TAO_UIOP_Profile::rendezvous_point (void) const
{
return this->object_addr_.get_path_name ();
}
ACE_INLINE const TAO_GIOP_Version &
TAO_UIOP_Profile::version (void) const
{
return this->version_;
}
ACE_INLINE TAO_UIOP_Client_Connection_Handler *&
TAO_UIOP_Profile::hint (void)
{
return this->hint_;
}
#endif /* TAO_HAS_UIOP == 1 */
|