tinyxml2
tinyxml2 copied to clipboard
TinyXML2 is a simple, small, efficient, C++ XML parser that can be easily integrated into other programs.
Please, help. I build the old project with make&Makefile. Now, I trying to build `tinyxml2` at `Debian 9.3`. First, I tried to use `tinyxml2.h and tinyxml2.cpp' -> tinyxml2.o then added...
This code: XMLDocument doc; doc.SaveFile( "some/valid/path.xml" ); yields an empty file on disk and `XMLDocument::Error()` being `false`. Is that expected?
Just wonder why, as my program relies on this and I would prefer not to change it as a save operation is not supposed to change the XMLDocument object.
''''XMLTest("Read dream.xml", true, uint32_t(size) >= uint32_t(bytesRead));'''' Why the >=? May be a line conversion issue; need to make sure it works or nothing more sinister.
The following is parsed incorrectly: `>]]>` The result is: `>]]>` result: ``
I think the assert gets triggered wrongly on inheritance. I'll explain more with code: first suppose we have: in the header: BaseClass [ public: XMLReportBase(); ~XMLReportBase(); void CreateReport(void); virtual void...
Hello Leethomason. when i use the tinyxml2, a error happens if i add the "tinyxml2.h" and windows.h in a cpp.Could you tell me why it happens please?
Hi. Please add a space before closing bracket. ``` void XMLPrinter::CloseElement( bool compactMode ) { --_depth; const char* name = _stack.Pop(); if ( _elementJustOpened ) { -- Print( "/>" );...
When we call IntAttribute method, this method read text attribute, and convert it to int via TIXML_SSCANF( str, "%d", value ). It work well if attribute actually contain integer value....
Tinyxml uses of seek() when reading the XML code. This places restrictions on the source of the XML data. You can not used named pipes, or network streams, as a...