summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Bug_2800_Regression/NsShutdown.cpp
blob: 567d1fd0e704b3cb4444fedd420e04ed10e68815 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// $Id$

#include "NsShutdown.h"

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

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