diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2009-04-30 14:22:37 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2009-04-30 14:22:37 -0230 |
commit | b742dcffcb2532742a714b9324bfcc33e63c4e44 (patch) | |
tree | f6218203f518c12230d91d55c44c7e1b6324f669 /cpp/src/Ice/StreamI.h | |
parent | Bug 3463 - make generated classes for slice structs non-final (diff) | |
download | ice-b742dcffcb2532742a714b9324bfcc33e63c4e44.tar.bz2 ice-b742dcffcb2532742a714b9324bfcc33e63c4e44.tar.xz ice-b742dcffcb2532742a714b9324bfcc33e63c4e44.zip |
Bug 3459 - add rewind/reset to InputStream/OutputStream
Diffstat (limited to 'cpp/src/Ice/StreamI.h')
-rw-r--r-- | cpp/src/Ice/StreamI.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cpp/src/Ice/StreamI.h b/cpp/src/Ice/StreamI.h index 874f7624b6d..4f5aba6b70f 100644 --- a/cpp/src/Ice/StreamI.h +++ b/cpp/src/Ice/StreamI.h @@ -85,6 +85,8 @@ public: virtual void readPendingObjects(); + virtual void rewind(); + private: Ice::CommunicatorPtr _communicator; @@ -158,6 +160,8 @@ public: virtual void finished(std::vector< Ice::Byte >&); + virtual void reset(bool); + private: Ice::CommunicatorPtr _communicator; |