diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-03-29 17:30:19 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-03-29 17:30:19 +0000 |
commit | dc15f759734848a12e9cf55110c2f34dd510f91d (patch) | |
tree | 54d16f67b41576f98d40933cd6f235868970f520 /cpp/src/Ice/StreamI.h | |
parent | Include fixes (diff) | |
download | ice-dc15f759734848a12e9cf55110c2f34dd510f91d.tar.bz2 ice-dc15f759734848a12e9cf55110c2f34dd510f91d.tar.xz ice-dc15f759734848a12e9cf55110c2f34dd510f91d.zip |
Added support for wstring slice metadata
Diffstat (limited to 'cpp/src/Ice/StreamI.h')
-rw-r--r-- | cpp/src/Ice/StreamI.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cpp/src/Ice/StreamI.h b/cpp/src/Ice/StreamI.h index e7004e290b4..971f3072335 100644 --- a/cpp/src/Ice/StreamI.h +++ b/cpp/src/Ice/StreamI.h @@ -84,6 +84,9 @@ public: virtual ::std::string readString(); virtual ::std::vector< ::std::string > readStringSeq(); + virtual ::std::wstring readWstring(); + virtual ::std::vector< ::std::wstring > readWstringSeq(); + virtual ::Ice::Int readSize(); virtual ::Ice::ObjectPrx readProxy(); @@ -147,6 +150,9 @@ public: virtual void writeString(const ::std::string&); virtual void writeStringSeq(const ::std::vector< ::std::string >&); + virtual void writeWstring(const ::std::wstring&); + virtual void writeWstringSeq(const ::std::vector< ::std::wstring >&); + virtual void writeSize(::Ice::Int); virtual void writeProxy(const ::Ice::ObjectPrx&); |