diff options
Diffstat (limited to 'src/xsl_processor.hh')
-rw-r--r-- | src/xsl_processor.hh | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/src/xsl_processor.hh b/src/xsl_processor.hh deleted file mode 100644 index ac9b047..0000000 --- a/src/xsl_processor.hh +++ /dev/null @@ -1,28 +0,0 @@ -/** - * Module: xsl_processor.hh - * - * Author: Michael Larson - * Date: 2005 - */ -#ifndef __XSL_PROCESSOR_HH__ -#define __XSL_PROCESSOR_HH__ - -#include <list> -#include <string> -#include <utility> - - -class XSLProcessor -{ -public: - XSLProcessor(bool debug); - ~XSLProcessor(); - - std::string - transform(const std::string &input, const std::string &xsl, const std::list<std::pair<std::string, std::string> > & listParams); - -private: - bool _debug; -}; - -#endif //__XSL_PROCESSOR_HH__ |