#ifndef INPUTXSLT_SRC_FUNCTION_EXTERNAL_COMMAND_H_ #define INPUTXSLT_SRC_FUNCTION_EXTERNAL_COMMAND_H_ #include #include #include "base.h" namespace InputXSLT { class FunctionExternalCommand : public FunctionBase< FunctionExternalCommand, std::string, boost::optional > { public: using FunctionBase::FunctionBase; protected: friend FunctionBase; DomDocumentCache::document_ptr constructDocument( const FilesystemContext&, std::string, boost::optional ) const; }; } #endif // INPUTXSLT_SRC_FUNCTION_EXTERNAL_COMMAND_H_