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/EndpointI.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/EndpointI.h')
-rw-r--r-- | cpp/src/Ice/EndpointI.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/cpp/src/Ice/EndpointI.h b/cpp/src/Ice/EndpointI.h index 1fb691ddd12..9385855f5ba 100644 --- a/cpp/src/Ice/EndpointI.h +++ b/cpp/src/Ice/EndpointI.h @@ -18,10 +18,16 @@ #include <Ice/AcceptorF.h> #include <Ice/VirtualShared.h> -namespace IceInternal +namespace Ice { -class BasicStream; +class OutputStream; +class InputStream; + +} + +namespace IceInternal +{ class ICE_API EndpointI_connectors : public virtual ICE_SHARED { @@ -40,7 +46,7 @@ public: // // Marshal the endpoint. // - virtual void streamWrite(BasicStream*) const = 0; + virtual void streamWrite(Ice::OutputStream*) const = 0; // // Return the endpoint type. |