summaryrefslogtreecommitdiff
path: root/TAO/tao/DynamicInterface/Server_Request.inl
blob: 22742b0922f3d43eb2cd9945e446fcadbaa39bcf (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
49
50
51
52
53
54
55
56
// -*- C++ -*-
// $Id$

ACE_INLINE CORBA_ServerRequest_ptr
CORBA_ServerRequest::_duplicate (CORBA_ServerRequest_ptr x)
{
  if (x != 0)
    {
      x->_incr_refcnt ();
    }

  return x;
}

ACE_INLINE CORBA_ServerRequest_ptr
CORBA_ServerRequest::_nil (void)
{
  return (CORBA_ServerRequest_ptr)0;
}

ACE_INLINE CORBA::Context_ptr
CORBA_ServerRequest::ctx (void) const
{
  return this->ctx_;
}

ACE_INLINE void
CORBA_ServerRequest::ctx (CORBA::Context_ptr ctx)
{
  this->ctx_ = ctx;
}

ACE_INLINE const char *
CORBA_ServerRequest::operation (void) const
{
  return this->orb_server_request_.operation ();
}

ACE_INLINE void
CORBA_ServerRequest::_tao_lazy_evaluation (int lazy_evaluation)
{
  this->lazy_evaluation_ = lazy_evaluation;
}

ACE_INLINE int
CORBA_ServerRequest::_tao_incoming_byte_order (void) const
{
  return this->orb_server_request_.incoming ().byte_order ();
}

ACE_INLINE void
CORBA_ServerRequest::_tao_reply_byte_order (int byte_order)
{
  this->orb_server_request_.outgoing ().reset_byte_order (byte_order);
}