blob: b47d464f483e2d7565ef1cb3453dda125b7d0832 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#include "Test_i.h"
test_i::test_i (CORBA::ORB_ptr orb)
: orb_ (CORBA::ORB::_duplicate (orb))
{
}
void
test_i::send_stuff (const char* string)
{
ACE_DEBUG ((LM_DEBUG, "TAO (%P|%t) - %s\n", string));
}
void
test_i::shutdown (void)
{
ACE_DEBUG ((LM_DEBUG,
"(%P|%t) About to invoke shudown...\n"));
this->orb_->shutdown (0);
}
|