summaryrefslogtreecommitdiff
path: root/cpp/src/IceSSL/uwp/ConnectorI.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/IceSSL/uwp/ConnectorI.h')
-rw-r--r--cpp/src/IceSSL/uwp/ConnectorI.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/cpp/src/IceSSL/uwp/ConnectorI.h b/cpp/src/IceSSL/uwp/ConnectorI.h
new file mode 100644
index 00000000000..d5d18a2c2a6
--- /dev/null
+++ b/cpp/src/IceSSL/uwp/ConnectorI.h
@@ -0,0 +1,47 @@
+// **********************************************************************
+//
+// 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.
+//
+// **********************************************************************
+
+#ifndef ICE_SSL_UWP_CONNECTOR_I_H
+#define ICE_SSL_UWP_CONNECTOR_I_H
+
+#include <Ice/TransceiverF.h>
+#include <Ice/ProtocolInstanceF.h>
+#include <Ice/Connector.h>
+#include <Ice/Network.h>
+
+namespace IceSSL
+{
+
+class ConnectorI : public IceInternal::Connector
+{
+public:
+
+ virtual IceInternal::TransceiverPtr connect();
+
+ virtual Ice::Short type() const;
+ virtual std::string toString() const;
+
+ virtual bool operator==(const IceInternal::Connector&) const;
+ virtual bool operator!=(const IceInternal::Connector&) const;
+ virtual bool operator<(const IceInternal::Connector&) const;
+
+private:
+
+ ConnectorI(const IceInternal::ProtocolInstancePtr&, const IceInternal::Address&, Ice::Int, const std::string&);
+ friend class EndpointI;
+
+ const IceInternal::ProtocolInstancePtr _instance;
+ const IceInternal::Address _addr;
+ const Ice::Int _timeout;
+ const std::string _connectionId;
+};
+
+}
+
+#endif