blob: ac9b0477f125586687fab19d7897d5b8f4fb8b2a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/**
* 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__
|