summaryrefslogtreecommitdiff
path: root/src/xsl_processor.hh
diff options
context:
space:
mode:
authorTom Grennan <tgrennan@vyatta.com>2008-01-03 18:07:24 -0800
committerTom Grennan <tgrennan@vyatta.com>2008-01-03 18:07:24 -0800
commitc0936f2db61418d29082e0cb6ff988226c479575 (patch)
tree149de46c062ea9952f29133e6e8661b259ba09b6 /src/xsl_processor.hh
parent8bc934765e0c9d64a6db9e8548fc10c9acc9d36c (diff)
parent8fbee603ef1ac56c5212fabb1942636471acf7ab (diff)
downloadvyatta-op-c0936f2db61418d29082e0cb6ff988226c479575.tar.gz
vyatta-op-c0936f2db61418d29082e0cb6ff988226c479575.zip
Merge branch 'glendale' of http://suva.vyatta.com/vyatta-op into glendale
Diffstat (limited to 'src/xsl_processor.hh')
-rw-r--r--src/xsl_processor.hh28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/xsl_processor.hh b/src/xsl_processor.hh
new file mode 100644
index 0000000..ac9b047
--- /dev/null
+++ b/src/xsl_processor.hh
@@ -0,0 +1,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__