diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-05-02 17:54:37 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-05-02 17:54:37 +0000 |
commit | fc39e42505a8ffd72ce942dcc3e95c05e8c6d9b2 (patch) | |
tree | 18b8689b8fd5ad29c46281dee27ad3cc7faffefe /cppe/include/IceE/BasicStream.h | |
parent | removing client/server separation (diff) | |
download | ice-fc39e42505a8ffd72ce942dcc3e95c05e8c6d9b2.tar.bz2 ice-fc39e42505a8ffd72ce942dcc3e95c05e8c6d9b2.tar.xz ice-fc39e42505a8ffd72ce942dcc3e95c05e8c6d9b2.zip |
More string converter optimizations
Diffstat (limited to 'cppe/include/IceE/BasicStream.h')
-rw-r--r-- | cppe/include/IceE/BasicStream.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cppe/include/IceE/BasicStream.h b/cppe/include/IceE/BasicStream.h index 042fd42389f..025c6679981 100644 --- a/cppe/include/IceE/BasicStream.h +++ b/cppe/include/IceE/BasicStream.h @@ -508,7 +508,7 @@ public: } } } - void write(const std::string*, const std::string*); + void write(const std::string*, const std::string*, bool = true); void read(std::string& v, bool convert = true) { Ice::Int sz; @@ -535,7 +535,7 @@ public: v.clear(); } } - void read(std::vector<std::string>&); + void read(std::vector<std::string>&, bool = true); void writeConverted(const std::wstring& v); void write(const std::wstring& v) |