diff options
author | Matthew Newhook <matthew@zeroc.com> | 2002-01-29 02:03:02 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2002-01-29 02:03:02 +0000 |
commit | 1a347f053ed10e965411c4768567d3c6d0b0e424 (patch) | |
tree | 56685aadd79e5e7b954850369616e4d7915dbe1b /cpp/include/IceXML/StreamI.h | |
parent | fix (diff) | |
download | ice-1a347f053ed10e965411c4768567d3c6d0b0e424.tar.bz2 ice-1a347f053ed10e965411c4768567d3c6d0b0e424.tar.xz ice-1a347f053ed10e965411c4768567d3c6d0b0e424.zip |
Added test/IceXML/encoding. Various bug fixes for IceXML.
Diffstat (limited to 'cpp/include/IceXML/StreamI.h')
-rw-r--r-- | cpp/include/IceXML/StreamI.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cpp/include/IceXML/StreamI.h b/cpp/include/IceXML/StreamI.h index 00c4bc9fca1..13600b68243 100644 --- a/cpp/include/IceXML/StreamI.h +++ b/cpp/include/IceXML/StreamI.h @@ -15,7 +15,6 @@ #include <Ice/CommunicatorF.h> #include <IceXML/Output.h> -#include <list> #include <map> #ifdef WIN32 @@ -211,9 +210,9 @@ private: Output _os; // - // Stack of started elements. + // Current document level. // - ::std::stack<std::string> _elementStack; + int _level; // // Next id for marshaling objects. |