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

// $Id$

#include "tao/Argument.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 *)
{
}