diff options
Diffstat (limited to 'js/test/Ice/proxy/Test.ice')
-rw-r--r-- | js/test/Ice/proxy/Test.ice | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/js/test/Ice/proxy/Test.ice b/js/test/Ice/proxy/Test.ice new file mode 100644 index 00000000000..02c9a71a505 --- /dev/null +++ b/js/test/Ice/proxy/Test.ice @@ -0,0 +1,29 @@ +// ********************************************************************** +// +// 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 + +#include <Ice/Current.ice> + +module Test +{ + +class MyClass +{ + void shutdown(); + + Ice::Context getContext(); +}; + +class MyDerivedClass extends MyClass +{ + Object* echo(Object* obj); +}; + +}; |