summaryrefslogtreecommitdiff
path: root/TAO/tao/Server_Request.i
blob: ae9ffd8fa264506a353f81884549390f30276762 (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
// $Id$

ACE_INLINE void
CORBA::release (CORBA_ServerRequest *req)
{
   if (req)
     req->Release ();
}

ACE_INLINE TAO_InputCDR &
IIOP_ServerRequest::incoming (void)
{
  return *this->incoming_;
}

ACE_INLINE TAO_OutputCDR &
IIOP_ServerRequest::outgoing (void)
{
  return *this->outgoing_;
}

// Invocation attributes.
ACE_INLINE const char *
IIOP_ServerRequest::operation (void) const
{
  return this->opname_;
}

#if 0
//@@ (TAO) to do after Context is implemented
ACE_INLINE CORBA::Context_ptr
IIOP_ServerRequest::ctx (void)
{
  return 0;
}
#endif

ACE_INLINE CORBA::ORB_ptr
IIOP_ServerRequest::orb (void)
{
  return orb_;
}

ACE_INLINE TAO_POA *
IIOP_ServerRequest::oa (void)
{
  return poa_;
}