Pretty fast XML parser.

Patrick Brosi 759c9a9744 update 5 years ago
.gitignore 7dd5a308e8 initial commit 7 years ago
README.md 759c9a9744 update 5 years ago
pfxml.h 759c9a9744 update 5 years ago

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).
  • Should be pretty fast.

Usage

#include "pfxml.h"

[...]

pfxml::file xml("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
}