/** * Module: xsl_processor.hh * * Author: Michael Larson * Date: 2005 */ #ifndef __XSL_PROCESSOR_HH__ #define __XSL_PROCESSOR_HH__ #include #include #include class XSLProcessor { public: XSLProcessor(bool debug); ~XSLProcessor(); std::string transform(const std::string &input, const std::string &xsl, const std::list > & listParams); private: bool _debug; }; #endif //__XSL_PROCESSOR_HH__