summaryrefslogtreecommitdiff
path: root/TAO/tests/ORT/ORT_test_i.cpp
blob: 11cab5e8254366e4f3e88c202948fce12ad7ad6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "ORT_test_i.h"

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

CORBA::Boolean
ORT_test_i::request_server (void)
{
  return 0;
}

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