aboutsummaryrefslogtreecommitdiff
path: root/src/function/write_file.h
blob: 5fd9f3e7cc513c6d639b842125119d5557ece91a (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
#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,
	xalan::XalanNode*
> {
	public:
		using FunctionBase::FunctionBase;

	protected:
		friend FunctionBase;

		xercesc::DOMDocument* constructDocument(
			boost::filesystem::path,
			xalan::XalanNode* const
		);

};

}

#endif  // INPUTXSLT_SRC_FUNCTION_WRITE_FILE_H_