summaryrefslogtreecommitdiff
path: root/TAO/tests/Server_Connection_Purging/Test_i.cpp
blob: f5ed7ac03b080f93046c3c5175cd11e097f19dec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
// $Id$
//
#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);
}