summaryrefslogtreecommitdiff
path: root/js/test/Common/Controller.ice
diff options
context:
space:
mode:
Diffstat (limited to 'js/test/Common/Controller.ice')
-rw-r--r--js/test/Common/Controller.ice24
1 files changed, 24 insertions, 0 deletions
diff --git a/js/test/Common/Controller.ice b/js/test/Common/Controller.ice
new file mode 100644
index 00000000000..65d0698913a
--- /dev/null
+++ b/js/test/Common/Controller.ice
@@ -0,0 +1,24 @@
+// **********************************************************************
+//
+// 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.
+//
+// **********************************************************************
+
+module Test
+{
+
+interface Server
+{
+ void waitTestSuccess();
+ void terminate();
+};
+
+interface Controller
+{
+ Server* runServer(string lang, string name, string protocol, string host);
+};
+
+};