Pretty fast XML parser.

Patrick Brosi f4aba7058a readme hace 6 años
.gitignore 7dd5a308e8 initial commit hace 7 años
CMakeLists.txt 7dd5a308e8 initial commit hace 7 años
File.cpp 8fd20b56be error if file couldnt be opened hace 6 años
File.h 7dd5a308e8 initial commit hace 7 años
NamedEnts.h 7dd5a308e8 initial commit hace 7 años
README.md f4aba7058a readme hace 6 años

README.md

Pretty fast XML parser

Simple XML parser with minimal copying. Designed for high-speed parsing of very large XML files (like OSM XML files).

Usage

#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
}