aboutsummaryrefslogtreecommitdiff
path: root/src/function/generate.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/function/generate.h')
-rw-r--r--src/function/generate.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/function/generate.h b/src/function/generate.h
new file mode 100644
index 0000000..43f5da1
--- /dev/null
+++ b/src/function/generate.h
@@ -0,0 +1,32 @@
+#ifndef INPUTXSLT_SRC_FUNCTION_GENERATE_H_
+#define INPUTXSLT_SRC_FUNCTION_GENERATE_H_
+
+#include <xalanc/XSLT/XSLTInputSource.hpp>
+
+#include "base.h"
+
+namespace InputXSLT {
+
+class FunctionGenerate : public FunctionBase<
+ FunctionGenerate,
+ xalan::XSLTInputSource,
+ xalan::XSLTInputSource,
+ boost::filesystem::path
+> {
+ public:
+ using FunctionBase::FunctionBase;
+
+ protected:
+ friend FunctionBase;
+
+ DomDocumentCache::document_ptr constructDocument(
+ xalan::XSLTInputSource,
+ xalan::XSLTInputSource,
+ boost::filesystem::path
+ ) const;
+
+};
+
+}
+
+#endif // INPUTXSLT_SRC_FUNCTION_GENERATE_H_