blob: 1a6f23ff21fb0a9987e2be489858ee8d6b15f07f (
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
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
#pragma once
module Test
{
exception TestException
{
}
interface TestIntf
{
int op();
int callOpOn(TestIntf* proxy);
void throwUserException1() throws TestException;
void throwUserException2() throws TestException;
void throwUnhandledException1();
void throwUnhandledException2();
void sleep(int ms);
void shutdown();
}
}
|