blob: 208019a5dea48f61b7825778ece092849ed43cd7 (
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$
ACE_INLINE
TAO_GIOP_Locate_Request_Header::TAO_GIOP_Locate_Request_Header (TAO_InputCDR &msg,
TAO_ORB_Core *orb)
: request_id_ (0),
profile_ (orb),
incoming_ (&msg)
{
}
ACE_INLINE void
TAO_GIOP_Locate_Request_Header::request_id (CORBA::ULong id)
{
this->request_id_ = id;
}
ACE_INLINE CORBA::ULong
TAO_GIOP_Locate_Request_Header::request_id (void)
{
return this->request_id_;
}
ACE_INLINE const TAO_ObjectKey &
TAO_GIOP_Locate_Request_Header::object_key (void) const
{
return this->profile_.object_key ();
}
ACE_INLINE TAO_ObjectKey &
TAO_GIOP_Locate_Request_Header::object_key (void)
{
return this->profile_.object_key ();
}
ACE_INLINE TAO_Tagged_Profile &
TAO_GIOP_Locate_Request_Header::profile (void)
{
return this->profile_;
}
ACE_INLINE TAO_InputCDR &
TAO_GIOP_Locate_Request_Header::incoming_stream (void)
{
return *this->incoming_;
}
|