2 //=============================================================================
6 * Implementation of the AMI Test interface.
8 * @author Alexander Babu Arulanthu <alex@cs.wustl.edu>
9 * @author Michael Kircher <Michael.Kircher@mchp.siemens.de>
11 //=============================================================================
14 #include "ami_test_i.h"
15 #include "tao/debug.h"
17 AMI_Test_i::AMI_Test_i (CORBA::ORB_ptr orb
)
18 : orb_ (CORBA::ORB::_duplicate (orb
))
23 AMI_Test_i::inout_arg_test (char *&)
25 // No action, this operation is to test code generation for INOUT
26 // args in AMI operations.
30 AMI_Test_i::shutdown ()
32 this->orb_
->shutdown (false);
39 "%N:%l:(%P:%t):AMI_Test_i::(get_)yadda\n"));
40 throw ::A::DidTheRightThingB (42, "Hello world");
44 AMI_Test_i::yadda (CORBA::Long
)
47 "%N:%l:(%P:%t):AMI_Test_i::(set_)yadda\n"));
48 throw ::A::DidTheRightThing (42, "Hello world");
55 "%N:%l:(%P:%t):AMI_Test_i::(get_)dadda\n"));
56 throw ::A::DidTheRightThing (42, "Hello world");