diff options
author | Mark Spruiell <mes@zeroc.com> | 2016-01-19 16:46:11 -0800 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2016-01-19 16:46:11 -0800 |
commit | d5dd7c866e9e1dc59dc7e127eb39f641530bf823 (patch) | |
tree | 61771e4f322a7138b643d5325a6d10acea30fb84 /cpp/src/Ice/EndpointFactory.h | |
parent | Deprecate ice_name and add ice_id (diff) | |
download | ice-d5dd7c866e9e1dc59dc7e127eb39f641530bf823.tar.bz2 ice-d5dd7c866e9e1dc59dc7e127eb39f641530bf823.tar.xz ice-d5dd7c866e9e1dc59dc7e127eb39f641530bf823.zip |
ICE-6861 - removing public stream API
Diffstat (limited to 'cpp/src/Ice/EndpointFactory.h')
-rw-r--r-- | cpp/src/Ice/EndpointFactory.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/cpp/src/Ice/EndpointFactory.h b/cpp/src/Ice/EndpointFactory.h index 79873ae5c50..5ff16fbc088 100644 --- a/cpp/src/Ice/EndpointFactory.h +++ b/cpp/src/Ice/EndpointFactory.h @@ -17,10 +17,15 @@ #include <Ice/CommunicatorF.h> #include <Ice/Plugin.h> -namespace IceInternal +namespace Ice { -class BasicStream; +class InputStream; + +} + +namespace IceInternal +{ class ICE_API EndpointFactory : public ::IceUtil::Shared { @@ -31,7 +36,7 @@ public: virtual ::Ice::Short type() const = 0; virtual ::std::string protocol() const = 0; virtual EndpointIPtr create(std::vector<std::string>&, bool) const = 0; - virtual EndpointIPtr read(BasicStream*) const = 0; + virtual EndpointIPtr read(Ice::InputStream*) const = 0; virtual void destroy() = 0; virtual EndpointFactoryPtr clone(const ProtocolInstancePtr&) const = 0; |