diff options
Diffstat (limited to 'js/test/Ice/facets/Test.ice')
-rw-r--r-- | js/test/Ice/facets/Test.ice | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/js/test/Ice/facets/Test.ice b/js/test/Ice/facets/Test.ice new file mode 100644 index 00000000000..23273a5388a --- /dev/null +++ b/js/test/Ice/facets/Test.ice @@ -0,0 +1,61 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2014 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 + +module Test +{ + +interface Empty +{ +}; + +interface A +{ + string callA(); +}; + +interface B extends A +{ + string callB(); +}; + +interface C extends A +{ + string callC(); +}; + +interface D extends B, C +{ + string callD(); +}; + +interface E +{ + string callE(); +}; + +interface F extends E +{ + string callF(); +}; + +interface G +{ + void shutdown(); + string callG(); +}; + +interface H extends G +{ + string callH(); +}; + +}; + |