diff options
Diffstat (limited to 'python/test/Ice/asyncio/Test.ice')
-rw-r--r-- | python/test/Ice/asyncio/Test.ice | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/python/test/Ice/asyncio/Test.ice b/python/test/Ice/asyncio/Test.ice new file mode 100644 index 00000000000..1a6f23ff21f --- /dev/null +++ b/python/test/Ice/asyncio/Test.ice @@ -0,0 +1,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(); +} + +} |