Registry / serialization / tinyxml

tinyxml

JSON →
library2.6.2vcpkgunverified

A simple, small, minimal, C++ XML parser that can be easily integrated into other programs.

vcpkg install tinyxml
INSTALL
IMPORT
SIG · TINYXML
T
tinyxml
serializationcppv2.6.2
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

tinyxml.h
#include <tinyxml.h>

Parse and access XML elements

#include "tinyxml.h" #include <iostream> int main() { TiXmlDocument doc; doc.Parse("<root><item>value</item></root>"); TiXmlElement* root = doc.RootElement(); if (root) { std::cout << "Root: " << root->Value() << "\n"; } return 0; }
Debug
Known issues
gotchaTinyXML is not thread-safe; concurrent access to the same document requires external synchronization.
fix
Use mutexes or per-thread document instances.
affects: all
Upgrade
Version history
2.6.2latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
9 hits · last 30 days
node
8
OpenAI (training)
1
Resources

No resource links recorded.

tinyxml — pip install tinyxml · libregistry