summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_1330_Regression/Test_i.cpp
blob: f4c287557a5e3e8e38cba40885076e913ac19e69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "Test_i.h"

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

Test_i::~Test_i()
{
}

void
Test_i::test_method (void)
{
}

void
Test_i::shutdown (void)
{
  this->orb_->shutdown (false);
}