summaryrefslogtreecommitdiff
path: root/cpp/src/IceWS/Instance.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/IceWS/Instance.h')
-rw-r--r--cpp/src/IceWS/Instance.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/cpp/src/IceWS/Instance.h b/cpp/src/IceWS/Instance.h
new file mode 100644
index 00000000000..d148a133c85
--- /dev/null
+++ b/cpp/src/IceWS/Instance.h
@@ -0,0 +1,30 @@
+// **********************************************************************
+//
+// 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.
+//
+// **********************************************************************
+
+#ifndef ICE_WS_INSTANCE_H
+#define ICE_WS_INSTANCE_H
+
+#include <IceWS/InstanceF.h>
+#include <Ice/ProtocolInstance.h>
+#include <Ice/CommunicatorF.h>
+
+namespace IceWS
+{
+
+class Instance : public IceInternal::ProtocolInstance
+{
+public:
+
+ Instance(const Ice::CommunicatorPtr&, Ice::Short, const std::string&);
+ virtual ~Instance();
+};
+
+}
+
+#endif