97 /// @brief This flag determines if plain character data (NodePcdata) that is the only child of the parent node and that consists only of whitespace is added to the DOM tree.
98 /// @details This flag is off by default; turning it on may Result in slower parsing and more memory consumption.
121Encodingwchar_t, ///< The same document encoding wchar_t has (usually either UTF16 or UTF32)
122EncodingLatin1///< Also called IEC_8859-1 a common encoding on windows, see http://en.wikipedia.org/wiki/ISO/IEC_8859-1 for furhter
123 };
124
125// Formatting flags
126
127 /// @brief Indent the nodes that are written to output stream with as many indentation strings as deep the node is in DOM tree. This flag is off by default.
137 /// @brief Open file using text mode in XML::Document::SaveFile. This enables special character (i.e. new-line) conversions on some systems. This flag is off by default.
178StatusEndElementMismatch///< There was a mismatch of start-end tags (closing tag had incorrect name, some tag was not closed or there was an excessive closing tag).