diff options
Diffstat (limited to 'js/test/Ice/binding/Test.ice')
-rw-r--r-- | js/test/Ice/binding/Test.ice | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/js/test/Ice/binding/Test.ice b/js/test/Ice/binding/Test.ice new file mode 100644 index 00000000000..c2ddcf4f3e5 --- /dev/null +++ b/js/test/Ice/binding/Test.ice @@ -0,0 +1,37 @@ +// ********************************************************************** +// +// 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 TestIntf +{ + string getAdapterName(); +}; + +interface RemoteObjectAdapter +{ + TestIntf* getTestIntf(); + + void deactivate(); +}; + +interface RemoteCommunicator +{ + RemoteObjectAdapter* createObjectAdapter(string name, string endpoints); + + void deactivateObjectAdapter(RemoteObjectAdapter* adapter); + + void shutdown(); +}; + +}; + |