Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 292 Bytes

README.md

File metadata and controls

14 lines (10 loc) · 292 Bytes

srcReader

C++ implementation of libxml2's xmlTextReader interface for srcML.

The following is an example API usage to copy a srcML document

srcml_reader reader("srcml.xml");
srcml_writer writer("copy.xml");

for(const srcml_node & node : reader) {
    writer.write(node);
}