diff options
author | Mark Spruiell <mes@zeroc.com> | 2008-04-24 06:26:13 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2008-04-24 06:26:13 -0700 |
commit | 1a0ee4008b6711cb4c7e91a3f1819f7c596ed120 (patch) | |
tree | abf7488ccafe73539ee790f4ff87f0b0ec6b4b72 /cpp/include/Ice/Stream.h | |
parent | restoring .gitignore files in cpp/bin and cpp/lib (diff) | |
parent | bug 711 - accept Unicode objects in Python (diff) | |
download | ice-1a0ee4008b6711cb4c7e91a3f1819f7c596ed120.tar.bz2 ice-1a0ee4008b6711cb4c7e91a3f1819f7c596ed120.tar.xz ice-1a0ee4008b6711cb4c7e91a3f1819f7c596ed120.zip |
Merge branch 'bug711'
Diffstat (limited to 'cpp/include/Ice/Stream.h')
-rw-r--r-- | cpp/include/Ice/Stream.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/include/Ice/Stream.h b/cpp/include/Ice/Stream.h index fdd59fab025..284fa65900f 100644 --- a/cpp/include/Ice/Stream.h +++ b/cpp/include/Ice/Stream.h @@ -63,8 +63,8 @@ public: virtual ::std::vector< ::Ice::Double > readDoubleSeq() = 0; virtual ::Ice::Double* readDoubleSeq(::std::pair<const ::Ice::Double*, const ::Ice::Double*>&) = 0; - virtual ::std::string readString() = 0; - virtual ::std::vector< ::std::string > readStringSeq() = 0; + virtual ::std::string readString(bool = true) = 0; + virtual ::std::vector< ::std::string > readStringSeq(bool = true) = 0; virtual ::std::wstring readWstring() = 0; virtual ::std::vector< ::std::wstring > readWstringSeq() = 0; @@ -124,8 +124,8 @@ public: virtual void writeDoubleSeq(const ::std::vector< ::Ice::Double >&) = 0; virtual void writeDoubleSeq(const Ice::Double*, const Ice::Double*) = 0; - virtual void writeString(const ::std::string&) = 0; - virtual void writeStringSeq(const ::std::vector< ::std::string >&) = 0; + virtual void writeString(const ::std::string&, bool = true) = 0; + virtual void writeStringSeq(const ::std::vector< ::std::string >&, bool = true) = 0; virtual void writeWstring(const ::std::wstring&) = 0; virtual void writeWstringSeq(const ::std::vector< ::std::wstring >&) = 0; |