aboutsummaryrefslogtreecommitdiff
path: root/src/function/read_file.h
blob: fdd70aceeeea6c869816ab05aad0abc99a1fd3b1 (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
#ifndef INPUTXSLT_SRC_FUNCTION_READ_FILE_H_
#define INPUTXSLT_SRC_FUNCTION_READ_FILE_H_

#include <boost/filesystem.hpp>

#include "base.h"

namespace InputXSLT {

class FunctionReadFile : public FunctionBase<
	FunctionReadFile,
	boost::filesystem::path
> {
	public:
		using FunctionBase::FunctionBase;

	protected:
		friend FunctionBase;

		xercesc::DOMDocument* constructDocument(boost::filesystem::path);

};

}

#endif  // INPUTXSLT_SRC_FUNCTION_READ_FILE_H_