aboutsummaryrefslogtreecommitdiff
path: root/example.cc
diff options
context:
space:
mode:
Diffstat (limited to 'example.cc')
-rw-r--r--example.cc11
1 files changed, 11 insertions, 0 deletions
diff --git a/example.cc b/example.cc
new file mode 100644
index 0000000..a0c122d
--- /dev/null
+++ b/example.cc
@@ -0,0 +1,11 @@
+#include "plattform_guard.h"
+#include "transformation_facade.h"
+
+int main(int, char**) {
+ InputXSLT::PlattformGuard plattform;
+ InputXSLT::TransformationFacade transformation("../dummy/transform.xsl");
+
+ return transformation.generate("out.xml", {
+ {"test", "42"}
+ });
+}