aboutsummaryrefslogtreecommitdiff
path: root/src/function/transform.h
blob: 810738ed1b17abb59e170ba1941d43f3ea8fc6cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef INPUTXSLT_SRC_FUNCTION_TRANSFORM_H_
#define INPUTXSLT_SRC_FUNCTION_TRANSFORM_H_

#include "base.h"

namespace InputXSLT {

class FunctionTransform : public FunctionBase<
	FunctionTransform,
	std::string,
	std::string,
	xalan::XObjectPtr
> {
	public:
		using FunctionBase::FunctionBase;

	protected:
		friend FunctionBase;

		xercesc::DOMDocument* constructDocument(
			const FilesystemContext&,
			const FunctionBase::parameter_tuple&
		);

};

}

#endif  // INPUTXSLT_SRC_FUNCTION_TRANSFORM_H_