aboutsummaryrefslogtreecommitdiff
path: root/src/function/write_file.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/function/write_file.h')
-rw-r--r--src/function/write_file.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/function/write_file.h b/src/function/write_file.h
new file mode 100644
index 0000000..2260055
--- /dev/null
+++ b/src/function/write_file.h
@@ -0,0 +1,28 @@
+#ifndef INPUTXSLT_SRC_FUNCTION_WRITE_FILE_H_
+#define INPUTXSLT_SRC_FUNCTION_WRITE_FILE_H_
+
+#include "base.h"
+
+namespace InputXSLT {
+
+class FunctionWriteFile : public FunctionBase<
+ FunctionWriteFile,
+ boost::filesystem::path,
+ std::string
+> {
+ public:
+ using FunctionBase::FunctionBase;
+
+ protected:
+ friend FunctionBase;
+
+ xercesc::DOMDocument* constructDocument(
+ boost::filesystem::path,
+ std::string
+ );
+
+};
+
+}
+
+#endif // INPUTXSLT_SRC_FUNCTION_WRITE_FILE_H_