diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2009-05-08 13:48:51 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2009-05-08 13:48:51 -0230 |
commit | cdc0f62f4fe737454bbb96031695415c4f9be406 (patch) | |
tree | ec007ba67d4f0e579becf7c7709137a619b5de8d /cpp/src/Ice/StreamI.cpp | |
parent | Bug 3966 - deadlock in LocatorInfo (diff) | |
download | ice-cdc0f62f4fe737454bbb96031695415c4f9be406.tar.bz2 ice-cdc0f62f4fe737454bbb96031695415c4f9be406.tar.xz ice-cdc0f62f4fe737454bbb96031695415c4f9be406.zip |
Bug 3409 - add sequence checking to ruby/python
Diffstat (limited to 'cpp/src/Ice/StreamI.cpp')
-rw-r--r-- | cpp/src/Ice/StreamI.cpp | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/cpp/src/Ice/StreamI.cpp b/cpp/src/Ice/StreamI.cpp index c347c653f5a..0fe3b566473 100644 --- a/cpp/src/Ice/StreamI.cpp +++ b/cpp/src/Ice/StreamI.cpp @@ -322,6 +322,36 @@ Ice::InputStreamI::skipSlice() } void +Ice::InputStreamI::startSeq(int numElements, int minSize) +{ + _is->startSeq(numElements, minSize); +} + +void +Ice::InputStreamI::checkSeq() +{ + _is->checkSeq(); +} + +void +Ice::InputStreamI::checkFixedSeq(int numElements, int minSize) +{ + _is->checkFixedSeq(numElements, minSize); +} + +void +Ice::InputStreamI::endSeq(int sz) +{ + _is->endSeq(sz); +} + +void +Ice::InputStreamI::endElement() +{ + _is->endElement(); +} + +void Ice::InputStreamI::readPendingObjects() { _is->readPendingObjects(); |