diff options
Diffstat (limited to 'cppe/src/IceE/Connector.h')
-rw-r--r-- | cppe/src/IceE/Connector.h | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/cppe/src/IceE/Connector.h b/cppe/src/IceE/Connector.h deleted file mode 100644 index ad14f217aa2..00000000000 --- a/cppe/src/IceE/Connector.h +++ /dev/null @@ -1,52 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved. -// -// This copy of Ice-E is licensed to you under the terms described in the -// ICEE_LICENSE file included in this distribution. -// -// ********************************************************************** - -#ifndef ICEE_CONNECTOR_H -#define ICEE_CONNECTOR_H - -#include <IceE/ConnectorF.h> -#include <IceE/TransceiverF.h> -#include <IceE/InstanceF.h> -#include <IceE/TraceLevelsF.h> -#include <IceE/LoggerF.h> -#include <IceE/Shared.h> - -#ifdef _WIN32 -# include <winsock2.h> -#else -# include <netinet/in.h> // For struct sockaddr_in -#endif - -namespace IceInternal -{ - -class Endpoint; - -class Connector : public ::IceUtil::Shared -{ -public: - - TransceiverPtr connect(int); - std::string toString() const; - -private: - - Connector(const InstancePtr&, const std::string&, int); - virtual ~Connector(); - friend class TcpEndpoint; - - InstancePtr _instance; - TraceLevelsPtr _traceLevels; - ::Ice::LoggerPtr _logger; - struct sockaddr_in _addr; -}; - -} - -#endif |