diff options
Diffstat (limited to 'cpp/test/Ice/slicing/exceptions/ClientPrivate.ice')
-rw-r--r-- | cpp/test/Ice/slicing/exceptions/ClientPrivate.ice | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/cpp/test/Ice/slicing/exceptions/ClientPrivate.ice b/cpp/test/Ice/slicing/exceptions/ClientPrivate.ice new file mode 100644 index 00000000000..9b2e381798a --- /dev/null +++ b/cpp/test/Ice/slicing/exceptions/ClientPrivate.ice @@ -0,0 +1,32 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2012 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. +// +// ********************************************************************** + +#pragma once + +#include <Test.ice> + +module Test +{ + +class PreservedClass extends BaseClass +{ + string pc; +}; + +exception Preserved1 extends KnownPreserved +{ + BaseClass p1; +}; + +exception Preserved2 extends Preserved1 +{ + BaseClass p2; +}; + +}; |