]> git.sesse.net Git - xml-template/blob - c++0x/passthru.cpp
f4fc63692a83a7d873b6552ac0ee390f65cb830b
[xml-template] / c++0x / passthru.cpp
1 #include <stdio.h>
2 #include <string.h>
3 #include <libxml/parser.h>
4
5 #include "xml-template.h"
6
7 using namespace std;
8
9 int main(int argc, char **argv)
10 {
11         Substitute master_directive = {};
12         process_file("../xml/passthru.xml", argv[1], &master_directive);
13         return(0);
14 }