diff options
Diffstat (limited to 'cppe/test/IceE/slicing/Test.ice')
-rw-r--r-- | cppe/test/IceE/slicing/Test.ice | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/cppe/test/IceE/slicing/Test.ice b/cppe/test/IceE/slicing/Test.ice deleted file mode 100644 index 9945a23c4a3..00000000000 --- a/cppe/test/IceE/slicing/Test.ice +++ /dev/null @@ -1,59 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved. -// -// This copy of Ice-E is licensed to you under the terms described in the -// ICEE_LICENSE file included in this distribution. -// -// ********************************************************************** - -#ifndef TEST_ICE -#define TEST_ICE - -module Test -{ - -exception Base -{ - string b; -}; - -exception KnownDerived extends Base -{ - string kd; -}; - -exception KnownIntermediate extends Base -{ - string ki; -}; - -exception KnownMostDerived extends KnownIntermediate -{ - string kmd; -}; - -interface TestIntf -{ - void baseAsBase() throws Base; - void unknownDerivedAsBase() throws Base; - void knownDerivedAsBase() throws Base; - void knownDerivedAsKnownDerived() throws KnownDerived; - - void unknownIntermediateAsBase() throws Base; - void knownIntermediateAsBase() throws Base; - void knownMostDerivedAsBase() throws Base; - void knownIntermediateAsKnownIntermediate() throws KnownIntermediate; - void knownMostDerivedAsKnownIntermediate() throws KnownIntermediate; - void knownMostDerivedAsKnownMostDerived() throws KnownMostDerived; - - void unknownMostDerived1AsBase() throws Base; - void unknownMostDerived1AsKnownIntermediate() throws KnownIntermediate; - void unknownMostDerived2AsBase() throws Base; - - void shutdown(); -}; - -}; - -#endif |