]> git.sesse.net Git - xml-template/blob - c++0x/attribute-empty.cpp
Tweak C++0x API a bit, to prepare for include. Also, output to stdout instead of...
[xml-template] / c++0x / attribute-empty.cpp
1 #include <stdio.h>
2
3 #include "xml-template.h"
4
5 using namespace std;
6
7 int main(int argc, char **argv)
8 {
9         Substitute master_directive = {
10                 make_pair("color", new Replace("blue")),
11                 make_pair("#things", new Clone { }),
12         };
13
14         xmlDocPtr doc = process_file("../xml/clone.xml", &master_directive);
15         output_to_fd_and_free(doc, 1);
16         return(0);
17 }