]> git.sesse.net Git - xml-template/blobdiff - c++0x/xml-template.cpp
Move the C++0x file processing logic into a shared function.
[xml-template] / c++0x / xml-template.cpp
index a158f31023c2feb9c93ee42dd729faf40b94d916..3be1407b3b5592d93b6768859135a90dfc26481f 100644 (file)
@@ -1,6 +1,7 @@
 #include "xml-template.h"
 
 #include <string.h>
+#include <libxml/parser.h>
 
 using namespace std;
 
@@ -44,3 +45,17 @@ void Substitute::process(xmlNode *node, bool clean) {
                }
        }
 }
+       
+void process_file(const string &input_filename,
+                  const string &output_filename,
+                  Directive *root_directive)
+{
+       LIBXML_TEST_VERSION
+
+       xmlDocPtr doc = xmlParseFile(input_filename.c_str());
+       root_directive->process(xmlDocGetRootElement(doc), false);
+       xmlSaveFile(output_filename.c_str(), doc);
+
+       xmlCleanupParser();
+       xmlMemoryDump();
+}