diff options
author | Marc Laukien <marc@zeroc.com> | 2001-10-09 19:17:53 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-10-09 19:17:53 +0000 |
commit | a5d1bac26377d62c8432a3434476da5e44fd2417 (patch) | |
tree | 5f40795193580b82a8a610af30587b07998247b6 /cpp/src/Ice/Proxy.cpp | |
parent | IntStream (diff) | |
download | ice-a5d1bac26377d62c8432a3434476da5e44fd2417.tar.bz2 ice-a5d1bac26377d62c8432a3434476da5e44fd2417.tar.xz ice-a5d1bac26377d62c8432a3434476da5e44fd2417.zip |
BasicStream; Stream.ice
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 6215f725c08..5a404cc0122 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/IntStream.h> +#include <Ice/BasicStream.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); - IntStream* __is = __out.is(); - IntStream* __os = __out.os(); + BasicStream* __is = __out.is(); + BasicStream* __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); - IntStream* __os = __out.os(); + BasicStream* __os = __out.os(); __os->write("_ping"); if (!__out.invoke()) { |