summaryrefslogtreecommitdiff
path: root/TAO/tests/ORT/ORT_test_i.cpp
blob: 0c0a7eb42fe1cd34eb90a3c9b50fa28b4b44a369 (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 (0);
}