summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Bug_3673_Regression/NsShutdown.cpp
blob: ba73cb16178bfe2ce56f166c7e287d0a2188e75b (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 (0);
}