#ifndef INPUTXSLT_SRC_FUNCTION_EXTERNAL_TEXT_FORMATTER_H_ #define INPUTXSLT_SRC_FUNCTION_EXTERNAL_TEXT_FORMATTER_H_ #include "base.h" namespace InputXSLT { class FunctionExternalTextFormatter : public FunctionBase< FunctionExternalTextFormatter, std::string, std::string > { public: using FunctionBase::FunctionBase; protected: friend FunctionBase; xercesc::DOMDocument* constructDocument( const FilesystemContext&, const FunctionBase::parameter_tuple& ); }; } #endif // INPUTXSLT_SRC_FUNCTION_EXTERNAL_TEXT_FORMATTER_H_