blob: 98e0861d980d885131f9ab7f3d54ffd26c7cbde3 (
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
|
// $Id$
#include "tao/Argument.h"
TAO::Argument::~Argument (void)
{
}
CORBA::Boolean
TAO::Argument::marshal (TAO_OutputCDR &)
{
return true;
}
CORBA::Boolean
TAO::Argument::demarshal (TAO_InputCDR &)
{
return true;
}
#if TAO_HAS_INTERCEPTORS == 1
void
TAO::Argument::interceptor_value (CORBA::Any *) const
{
}
CORBA::ParameterMode
TAO::InArgument::mode (void) const
{
return CORBA::PARAM_IN;
}
CORBA::ParameterMode
TAO::InoutArgument::mode (void) const
{
return CORBA::PARAM_INOUT;
}
CORBA::ParameterMode
TAO::OutArgument::mode (void) const
{
return CORBA::PARAM_OUT;
}
CORBA::ParameterMode
TAO::RetArgument::mode (void) const
{
return CORBA::PARAM_OUT;
}
#endif /* TAO_HAS_INTERCEPTORS */
|