summaryrefslogtreecommitdiff
path: root/cpp/test/IceSSL/configuration/Test.ice
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/IceSSL/configuration/Test.ice')
-rw-r--r--cpp/test/IceSSL/configuration/Test.ice31
1 files changed, 31 insertions, 0 deletions
diff --git a/cpp/test/IceSSL/configuration/Test.ice b/cpp/test/IceSSL/configuration/Test.ice
new file mode 100644
index 00000000000..f5e6b6992bc
--- /dev/null
+++ b/cpp/test/IceSSL/configuration/Test.ice
@@ -0,0 +1,31 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2006 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.
+//
+// **********************************************************************
+
+#ifndef TEST_ICE
+#define TEST_ICE
+
+module Test
+{
+
+interface Server
+{
+};
+
+dictionary<string, string> Properties;
+
+interface ServerFactory
+{
+ Server* createServer(Properties props);
+ void destroyServer(Server* srv);
+ void shutdown();
+};
+
+};
+
+#endif