blob: 91fc13f1efebb1a96297e7cf0cd0bd68ac9f2ae8 (
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
|
// This may look like C, but it's really -*- C++ -*-
// Return the target of this request.
ACE_INLINE CORBA::Object_ptr
CORBA_Request::target (void) const
{
return target_;
}
// Return the operation name for the request.
ACE_INLINE const CORBA::Char *
CORBA_Request::operation (void) const
{
return opname_;
}
// Return the arguments for the request.
ACE_INLINE CORBA::NVList_ptr
CORBA_Request::arguments (void)
{
return args_;
}
// Return the result for the request.
ACE_INLINE CORBA::NamedValue_ptr
CORBA_Request::result (void)
{
return result_;
}
// Return the exceptions resulting from this request.
ACE_INLINE CORBA::ExceptionList_ptr
CORBA_Request::exceptions (void)
{
return &exceptions_;
}
// Return the <Environment> for this request.
ACE_INLINE CORBA::Environment *
CORBA_Request::env (void)
{
return &env_;
}
|