Patrick Brosi f4aba7058a readme | před 6 roky | |
---|---|---|
.gitignore | před 7 roky | |
CMakeLists.txt | před 7 roky | |
File.cpp | před 6 roky | |
File.h | před 7 roky | |
NamedEnts.h | před 7 roky | |
README.md | před 6 roky |
Simple XML parser with minimal copying. Designed for high-speed parsing of very large XML files (like OSM XML files).
#include "xml/File.h"
[...]
xml::File f("myfile.xml");
while (xml.next()) {
const auto& cur = xml.get();
std::cout << cur.name << std::endl; // .name is the xml tag name
std::cout << cur.level << std::endl; // .level is the tags tree level
std::cout << cur.attrs.size() << std::endl; // .attrs contains the parameters
}