2 //=============================================================================
6 * Implementation of the AMI Test interface.
8 * @author Johnny Willemsen <jwillemsen@remedy.nl>
10 //=============================================================================
13 #include "ami_test_i.h"
14 #include "tao/debug.h"
16 AMI_Test_i::AMI_Test_i (CORBA::ORB_ptr orb
)
17 : orb_ (CORBA::ORB::_duplicate (orb
))
22 AMI_Test_i::foo (CORBA::Long value
)
25 "%N:%l:(%P:%t):AMI_Test_i::foo: %d\n",
31 "Throwing Exception: A::DidTheRightThing\n"));
32 throw A::DidTheRightThing();
36 throw A::DidTheWrongThing ();
41 AMI_Test_i::shutdown ()
43 this->orb_
->shutdown (false);