blob: ff2df5d99e8ff5285aef20ca6d91f70723ac6415 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "simple_test_i.h"
Simple_Test_i::Simple_Test_i (CORBA::ORB_ptr orb)
: orb_ (CORBA::ORB::_duplicate (orb))
{
}
void
Simple_Test_i::shutdown (void)
{
this->orb_->shutdown (false);
}
|