diff options
author | Matthew Newhook <matthew@zeroc.com> | 2002-01-29 02:33:43 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2002-01-29 02:33:43 +0000 |
commit | b77dbf9c233a97b1919e3abb4ed201d66e3a3b3a (patch) | |
tree | 987af00f17d8c41d4fc5e82da116478213060331 /cpp/test/IceXML/encoding/Client.cpp | |
parent | Added test/IceXML/encoding. Various bug fixes for IceXML. (diff) | |
download | ice-b77dbf9c233a97b1919e3abb4ed201d66e3a3b3a.tar.bz2 ice-b77dbf9c233a97b1919e3abb4ed201d66e3a3b3a.tar.xz ice-b77dbf9c233a97b1919e3abb4ed201d66e3a3b3a.zip |
Updated project file for IceXML.
Diffstat (limited to 'cpp/test/IceXML/encoding/Client.cpp')
-rw-r--r-- | cpp/test/IceXML/encoding/Client.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/IceXML/encoding/Client.cpp b/cpp/test/IceXML/encoding/Client.cpp index cabdc47309e..13cce11fd20 100644 --- a/cpp/test/IceXML/encoding/Client.cpp +++ b/cpp/test/IceXML/encoding/Client.cpp @@ -264,13 +264,13 @@ TestColor(const Ice::CommunicatorPtr& communicator) ostringstream os; os << header; Ice::StreamPtr ostream = new IceXML::StreamI(communicator, os); - ice_marshal(element, ostream, ein); + ::Test::ice_marshal(element, ostream, ein); os << footer; istringstream is(os.str()); Ice::StreamPtr istream = new IceXML::StreamI(communicator, is); Test::Color eout; - ice_unmarshal(element, istream, eout); + ::Test::ice_unmarshal(element, istream, eout); test(ein == eout); } |