summaryrefslogtreecommitdiff
path: root/TAO/interop-tests/CdrOutArg/tao/test_i.cpp
blob: 3b6ca427da17014b83c469fc8aae945652331916 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "test_i.h"

CDR_Out_Arg_i::CDR_Out_Arg_i (CORBA::ORB_ptr orb)
  : orb_ (CORBA::ORB::_duplicate (orb))
{
}

void
CDR_Out_Arg_i::get_out (CORBA::Long_out arg)
{
  arg = 100;
}

void
CDR_Out_Arg_i::shutdown (void)
{
  this->orb_->shutdown (0);
}