blob: 799be9fdcbe9fdc5d943270b74982864e3d5a05b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// $Id$
ACE_INLINE
Callback_i::Callback_i (CORBA::ORB_ptr orb)
: orb_ (CORBA::ORB::_duplicate (orb))
{
}
ACE_INLINE
Simple_Server_i::Simple_Server_i (CORBA::ORB_ptr orb,
int no_iterations)
: orb_ (CORBA::ORB::_duplicate (orb)),
flag_ (0),
callback_ (0),
no_iterations_ (no_iterations)
{
}
|