blob: d58451eb3462d8b7fe7081bdec86a179a10aaf33 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
//=============================================================================
/**
* @file ami_test_i.cpp
*
* $Id$
*
* Implementation of the AMI Test interface.
*
*
* @author Alexander Babu Arulanthu <alex@cs.wustl.edu>
* @author Michael Kircher <Michael.Kircher@mchp.siemens.de>
*/
//=============================================================================
#include "ami_test_i.h"
#include "tao/debug.h"
AMI_Test_i::AMI_Test_i (CORBA::ORB_ptr orb)
: orb_ (CORBA::ORB::_duplicate (orb))
{
}
void
AMI_Test_i::inout_arg_test (char *&)
{
// No action, this operation is to test code generation for INOUT
// args in AMI operations.
}
void
AMI_Test_i::shutdown (void)
{
this->orb_->shutdown (0);
}
CORBA::Long
AMI_Test_i::yadda (void)
{
ACE_DEBUG ((LM_DEBUG,
"%N:%l:(%P:%t):AMI_Test_i::(get_)yadda\n"));
throw ::A::DidTheRightThingB (42, "Hello world");
}
void
AMI_Test_i::yadda (CORBA::Long)
{
ACE_DEBUG ((LM_DEBUG,
"%N:%l:(%P:%t):AMI_Test_i::(set_)yadda\n"));
throw ::A::DidTheRightThing (42, "Hello world");
}
CORBA::Long
AMI_Test_i::dadda (void)
{
ACE_DEBUG ((LM_DEBUG,
"%N:%l:(%P:%t):AMI_Test_i::(get_)dadda\n"));
throw ::A::DidTheRightThing (42, "Hello world");
}
|