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
61
62
63
64
|
// **********************************************************************
//
// Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
#ifndef TEST_I_H
#define TEST_I_H
#include <TestAMD.h>
class ThrowerI : public Test::Thrower
{
public:
ThrowerI(const Ice::ObjectAdapterPtr&);
virtual void shutdown_async(const Test::AMD_Thrower_shutdownPtr&,
const Ice::Current&);
virtual void supportsUndeclaredExceptions_async(const Test::AMD_Thrower_supportsUndeclaredExceptionsPtr&,
const Ice::Current&);
virtual void supportsAssertException_async(const Test::AMD_Thrower_supportsAssertExceptionPtr&,
const Ice::Current&);
virtual void throwAasA_async(const Test::AMD_Thrower_throwAasAPtr&,
Ice::Int, const Ice::Current&);
virtual void throwAorDasAorD_async(const Test::AMD_Thrower_throwAorDasAorDPtr&,
Ice::Int, const Ice::Current&);
virtual void throwBasA_async(const Test::AMD_Thrower_throwBasAPtr&,
Ice::Int, Ice::Int, const Ice::Current&);
virtual void throwCasA_async(const Test::AMD_Thrower_throwCasAPtr&,
Ice::Int, Ice::Int, Ice::Int, const Ice::Current&);
virtual void throwBasB_async(const Test::AMD_Thrower_throwBasBPtr&,
Ice::Int, Ice::Int, const Ice::Current&);
virtual void throwCasB_async(const Test::AMD_Thrower_throwCasBPtr&,
Ice::Int, Ice::Int, Ice::Int, const Ice::Current&);
virtual void throwCasC_async(const Test::AMD_Thrower_throwCasCPtr&,
Ice::Int, Ice::Int, Ice::Int, const Ice::Current&);
virtual void throwModA_async(const Test::AMD_Thrower_throwModAPtr&,
Ice::Int, Ice::Int, const Ice::Current&);
virtual void throwUndeclaredA_async(const Test::AMD_Thrower_throwUndeclaredAPtr&,
Ice::Int, const Ice::Current&);
virtual void throwUndeclaredB_async(const Test::AMD_Thrower_throwUndeclaredBPtr&,
Ice::Int, Ice::Int, const Ice::Current&);
virtual void throwUndeclaredC_async(const Test::AMD_Thrower_throwUndeclaredCPtr&,
Ice::Int, Ice::Int, Ice::Int, const Ice::Current&);
virtual void throwLocalException_async(const Test::AMD_Thrower_throwLocalExceptionPtr&,
const Ice::Current&);
virtual void throwNonIceException_async(const Test::AMD_Thrower_throwNonIceExceptionPtr&,
const Ice::Current&);
virtual void throwAssertException_async(const Test::AMD_Thrower_throwAssertExceptionPtr&,
const Ice::Current&);
private:
Ice::ObjectAdapterPtr _adapter;
};
#endif
|