diff options
author | Marc Laukien <marc@zeroc.com> | 2001-10-09 18:27:58 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-10-09 18:27:58 +0000 |
commit | ca9e4073d50175daa12dba5f197f3324eb2722cc (patch) | |
tree | ee1813a45b738c456b4bc3eb72e19e78d1b35b36 /cpp/src/Ice/Proxy.cpp | |
parent | removed pickler, native (diff) | |
download | ice-ca9e4073d50175daa12dba5f197f3324eb2722cc.tar.bz2 ice-ca9e4073d50175daa12dba5f197f3324eb2722cc.tar.xz ice-ca9e4073d50175daa12dba5f197f3324eb2722cc.zip |
IntStream
Diffstat (limited to 'cpp/src/Ice/Proxy.cpp')
-rw-r--r-- | cpp/src/Ice/Proxy.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/Ice/Proxy.cpp b/cpp/src/Ice/Proxy.cpp index 237edf84a66..6215f725c08 100644 --- a/cpp/src/Ice/Proxy.cpp +++ b/cpp/src/Ice/Proxy.cpp @@ -19,7 +19,7 @@ #include <Ice/Logger.h> #include <Ice/TraceLevels.h> #include <Ice/Emitter.h> -#include <Ice/Stream.h> +#include <Ice/IntStream.h> #include <Ice/LocalException.h> #include <Ice/Functional.h> @@ -460,8 +460,8 @@ bool IceDelegateM::Ice::Object::_isA(const string& s) { Outgoing __out(__emitter, __reference); - Stream* __is = __out.is(); - Stream* __os = __out.os(); + IntStream* __is = __out.is(); + IntStream* __os = __out.os(); __os->write("_isA"); __os->write(s); if (!__out.invoke()) @@ -477,7 +477,7 @@ void IceDelegateM::Ice::Object::_ping() { Outgoing __out(__emitter, __reference); - Stream* __os = __out.os(); + IntStream* __os = __out.os(); __os->write("_ping"); if (!__out.invoke()) { |