summaryrefslogtreecommitdiff
path: root/TAO/tao/Argument.cpp
blob: 6aac4859ad8d403f47c6d1d40c1191a782d76ed0 (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

// $Id$

#include "tao/Argument.h"
#include "tao/DynamicC.h"

TAO::Argument::~Argument (void)
{
}

CORBA::Boolean
TAO::Argument::marshal (TAO_OutputCDR &)
{
  return 1;
}

CORBA::Boolean
TAO::Argument::demarshal (TAO_InputCDR &)
{
  return 1;
}

void
TAO::Argument::interceptor_param (Dynamic::Parameter &)
{
}

void
TAO::Argument::interceptor_result (CORBA::Any *)
{
}

CORBA::Boolean
TAO::Argument::interceptor_replace (CORBA::Any &)
{
  return 1;
}