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

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

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