diff options
author | Jose <jose@zeroc.com> | 2014-08-13 22:30:18 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2014-08-13 22:30:18 +0200 |
commit | edd76dbfad6a28c11e441571af493e1eb99ddf52 (patch) | |
tree | 6e8d1045d6e4c60120970468d68b4734e2fee6e0 /cpp/src/Ice/WSConnector.h | |
parent | - Added back the Ice.BackgroundIO property. (diff) | |
download | ice-edd76dbfad6a28c11e441571af493e1eb99ddf52.tar.bz2 ice-edd76dbfad6a28c11e441571af493e1eb99ddf52.tar.xz ice-edd76dbfad6a28c11e441571af493e1eb99ddf52.zip |
Rename WS transport files for consistency with TCP/UDP transports.
Diffstat (limited to 'cpp/src/Ice/WSConnector.h')
-rw-r--r-- | cpp/src/Ice/WSConnector.h | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/cpp/src/Ice/WSConnector.h b/cpp/src/Ice/WSConnector.h new file mode 100644 index 00000000000..cbdd95144ec --- /dev/null +++ b/cpp/src/Ice/WSConnector.h @@ -0,0 +1,51 @@ +// ********************************************************************** +// +// 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_WSCONNECTOR_I_H +#define ICE_WSCONNECTOR_I_H + +#include <Ice/LoggerF.h> +#include <Ice/TransceiverF.h> +#include <Ice/Connector.h> +#include <Ice/ProtocolInstance.h> + +namespace IceInternal +{ + +class WSEndpoint; + +class WSConnector : 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: + + WSConnector(const ProtocolInstancePtr&, const ConnectorPtr&, const std::string&, int, const std::string&); + virtual ~WSConnector(); + friend class WSEndpoint; + + const ProtocolInstancePtr _instance; + const ConnectorPtr _delegate; + const std::string _host; + const int _port; + const std::string _resource; +}; + +} + +#endif |