summaryrefslogtreecommitdiff
path: root/ACE/TAO/orbsvcs/tests/Bug_3673_Regression/NsShutdown.cpp
blob: ae73a73eefd5bd95ac39d63964484f47827e624a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
// $Id$
//
#include "NsShutdown.h"

ACE_RCSID(Hello,
          NsShutdown,
          "$Id$")

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

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