tinyxml2
tinyxml2 copied to clipboard
TinyXML2 is a simple, small, efficient, C++ XML parser that can be easily integrated into other programs.
In order to use this library in a large-scale video game engine, we need to replace new/delete calls with custom memory allocation hooks. It would be nice if this was...
The following commits seem to have broken non-standard Cmake installations when using `CMAKE_INSTALL_PREFIX`: ``` b54cf3cb4531a62592fe8679ce264fe272e1cd36 d89d6d9551e5343de4f70ac534f61c3057713f92 ``` After these commits, the resultant file in `$(CMAKE_INSTALL_PREFIX)/lib/pkgconfig/tinyxml2.pc` is: ``` prefix=$(CMAKE_INSTALL_PREFIX) exec_prefix=${prefix} libdir=lib...
Hello, I'm wondering if it would be possible to parse TRUE and FALSE, too. It's in this function: bool XMLUtil::ToBool( const char* str, bool* value ) I changed it to...
Hi, I have a large table of double that need to be written in a XML file. (coordinates of vertices) I was wondering if there is a "beautiful way" to...
I am trying to read the following XML file: 161 162 The code with tinyxml2 usage is as follows: int main (int argc, char* argv[]) { tinyxml2::XMLError eResult; tinyxml2::XMLDocument xml_file;...
The four links [on your related-pages site](https://leethomason.github.io/tinyxml2/pages.html) are dead.
This is an issue about readability of the code, not about a bug in the code. I don't like to make any changes in your code, not even changing layout....
Dear Sir, Usually I just stick `tinyxml2.h` and `tinyxml2.cpp` in my project and use it that way. But for testing and learning I like to use the `test.exe` tool that...
`XMLDocument::SetError()` [implementation](https://github.com/leethomason/tinyxml2/blob/e1b50439c94181d3c271cbc5a9b3445640f8f4e9/tinyxml2.cpp#L2308) creates a "long form" error description only if `format` is provided. However, in about dozen cases `SetError` is called with format set to `0` ([example](https://github.com/leethomason/tinyxml2/blob/e1b50439c94181d3c271cbc5a9b3445640f8f4e9/tinyxml2.cpp#L1023)), rendering `ErrorStr()` &...
I'm just writing here to document some of the challenges I've had as a downstream user of tinyxml2 due to the API changes in major version 6. I'm grateful for...