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