blob: 76f835f9cf56cf3205ae5dd783a5e7b1879e9cad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
// $Id$
#include "test_i.h"
ACE_RCSID(MT_Client, test_i, "$Id$")
Simple_Server_i::Simple_Server_i (CORBA::ORB_ptr orb)
: orb_ (CORBA::ORB::_duplicate (orb)),
val_ (1)
{
}
Simple_Server_i::Simple_Server_i (void)
: orb_ (0)
{
// no-op
}
CORBA::Long
Simple_Server_i::remote_call (void)
ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_DEBUG ((LM_DEBUG,
"Print out from process id (%P) hosting the servant \n"));
return this->val_++;
}
void
Simple_Server_i::shutdown (void)
ACE_THROW_SPEC ((CORBA::SystemException))
{
this->orb_->shutdown (0);
}
|