#ifndef INPUTXSLT_SRC_FUNCTION_READ_FILE_H_ #define INPUTXSLT_SRC_FUNCTION_READ_FILE_H_ #include #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_