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/include/Ice/Outgoing.h | |
parent | removed pickler, native (diff) | |
download | ice-ca9e4073d50175daa12dba5f197f3324eb2722cc.tar.bz2 ice-ca9e4073d50175daa12dba5f197f3324eb2722cc.tar.xz ice-ca9e4073d50175daa12dba5f197f3324eb2722cc.zip |
IntStream
Diffstat (limited to 'cpp/include/Ice/Outgoing.h')
-rw-r--r-- | cpp/include/Ice/Outgoing.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cpp/include/Ice/Outgoing.h b/cpp/include/Ice/Outgoing.h index 03c5c719ef4..e5759c239d4 100644 --- a/cpp/include/Ice/Outgoing.h +++ b/cpp/include/Ice/Outgoing.h @@ -13,7 +13,7 @@ #include <Ice/EmitterF.h> #include <Ice/ReferenceF.h> -#include <Ice/Stream.h> +#include <Ice/IntStream.h> namespace IceUtil { @@ -60,11 +60,11 @@ public: ~Outgoing(); bool invoke(); - void finished(Stream&); + void finished(IntStream&); void finished(const ::Ice::LocalException&); - Stream* is(); - Stream* os(); + IntStream* is(); + IntStream* os(); private: @@ -82,8 +82,8 @@ private: StateLocalException, } _state; - Stream _is; - Stream _os; + IntStream _is; + IntStream _os; }; } |