blob: f40a59b3835313d98019e0c77cb2205a9e5b707e (
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
|
//=============================================================================
/**
* @file ami_test_i.cpp
*
* $Id$
*
* Implementation of the AMI Test interface.
*
*
* @author Johnny Willemsen <jwillemsen@remedy.nl>
*/
//=============================================================================
#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::foo (CORBA::Long value)
{
if (value == 0)
{
ACE_DEBUG ((LM_DEBUG,
"Throwing Exception: A::DidTheRightThing\n"));
#if defined(ACE_HAS_WCHAR) || defined(ACE_HAS_XPG4_MULTIBYTE_CHAR)
CORBA::WChar const* wstring = L"Hello world";
#else
CORBA::WChar const empty[] = { 0 };
CORBA::WChar const* wstring = empty;
#endif
throw A::DidTheRightThing(42, wstring);
}
}
void
AMI_Test_i::shutdown (void)
{
this->orb_->shutdown (0);
}
|