// ********************************************************************** // // Copyright (c) 2003-2017 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 ICESSL_CONNECTOR_I_H #define ICESSL_CONNECTOR_I_H #include #include #include #include namespace IceSSL { class EndpointI; 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; private: ConnectorI(const InstancePtr&, const IceInternal::ConnectorPtr&, const std::string&); virtual ~ConnectorI(); friend class EndpointI; const InstancePtr _instance; const IceInternal::ConnectorPtr _delegate; const std::string _host; }; } // IceSSL namespace end #endif