aboutsummaryrefslogtreecommitdiff
path: root/src/function/read_xml_file.h
blob: 4aebe562d8bbe9df2ddc362bd3581c20a2a8e586 (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
#ifndef INPUTXSLT_SRC_FUNCTION_READ_XML_FILE_H_
#define INPUTXSLT_SRC_FUNCTION_READ_XML_FILE_H_

#include "base.h"

namespace InputXSLT {

class FunctionReadXmlFile : public FunctionBase<FunctionReadXmlFile> {
	public:
		using FunctionBase<FunctionReadXmlFile>::FunctionBase;

	protected:
		friend FunctionBase;

		xercesc::DOMDocument* constructDocument(
			const FilesystemContext&,
			const boost::filesystem::path&
		);

};

}

#endif  // INPUTXSLT_SRC_FUNCTION_READ_XML_FILE_H_