diff -r 000000000000 -r 988f1908a7c4 xsltproc.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xsltproc.h Fri Jul 23 16:43:49 2010 +0000 @@ -0,0 +1,31 @@ +#ifndef XSLTPROC_H +#define XSLTPROC_H + +#include +#include + +#include "showtextdialog.h" + +class XSLTProc +{ +public: + XSLTProc(); + ~XSLTProc(); + void addStringParam(const QString &, const QString &); + void setOutputFile (const QString &); + void setXSLFile (const QString &); + void setInputFile (const QString &); + void addOutput (const QString &); + void process(); +private: + QStringList stringParamKey; + QStringList stringParamVal; + QString outputFile; + QString inputFile; + QString xslFile; + QString xsltprocessor; + bool showOutput; + ShowTextDialog *dia; +}; + +#endif