diff options
Diffstat (limited to 'cpp/test/Common/Controller.ice')
-rw-r--r-- | cpp/test/Common/Controller.ice | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/cpp/test/Common/Controller.ice b/cpp/test/Common/Controller.ice new file mode 100644 index 00000000000..5178df68660 --- /dev/null +++ b/cpp/test/Common/Controller.ice @@ -0,0 +1,38 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2015 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 +{ + +module Common +{ + +exception ServerFailedException +{ + string reason; +}; + +interface Server +{ + void waitTestSuccess(); + void waitForServer() throws ServerFailedException; + void terminate(); +}; + +sequence<string> StringSeq; + +interface Controller +{ + Server* runServer(string lang, string name, string protocol, string host, bool winrt, string configName, + StringSeq options); +}; + +}; + +}; |