summaryrefslogtreecommitdiff
path: root/cpp/test/IceSSL/configuration/TestI.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/IceSSL/configuration/TestI.h')
-rw-r--r--cpp/test/IceSSL/configuration/TestI.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/cpp/test/IceSSL/configuration/TestI.h b/cpp/test/IceSSL/configuration/TestI.h
new file mode 100644
index 00000000000..aece08878ce
--- /dev/null
+++ b/cpp/test/IceSSL/configuration/TestI.h
@@ -0,0 +1,42 @@
+// **********************************************************************
+//
+// 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_I_H
+#define TEST_I_H
+
+#include <Test.h>
+
+class ServerI : public Test::Server
+{
+public:
+
+ ServerI(const Ice::CommunicatorPtr&);
+
+ void destroy();
+
+private:
+
+ Ice::CommunicatorPtr _communicator;
+};
+typedef IceUtil::Handle<ServerI> ServerIPtr;
+
+class ServerFactoryI : public Test::ServerFactory
+{
+public:
+
+ virtual Test::ServerPrx createServer(const Test::Properties&, const Ice::Current&);
+ virtual void destroyServer(const Test::ServerPrx&, const Ice::Current&);
+ virtual void shutdown(const Ice::Current&);
+
+private:
+
+ std::map<Ice::Identity, ServerIPtr> _servers;
+};
+
+#endif