summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Bug_3673_Regression/NsShutdown.cpp
blob: 7e9b59fda898d6f204f62c4ac1fcc7f7c21850e5 (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 ()
{
  this->orb_->shutdown (false);
}