summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Bug_3673_Regression/NsShutdown.cpp
blob: c11d9ebe2390fdfd68ddc77d8ad439b72286fec0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "NsShutdown.h"

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

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