diff -r 000000000000 -r 28cda321f8da xsltproc.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xsltproc.h Wed Feb 15 12:54:55 2006 +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