1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/xsltproc.h Mon May 08 13:26:08 2006 +0000
1.3 @@ -0,0 +1,31 @@
1.4 +#ifndef XSLTPROC_H
1.5 +#define XSLTPROC_H
1.6 +
1.7 +#include <qstring.h>
1.8 +#include <qstringlist.h>
1.9 +
1.10 +#include "showtextdialog.h"
1.11 +
1.12 +class XSLTProc
1.13 +{
1.14 +public:
1.15 + XSLTProc();
1.16 + ~XSLTProc();
1.17 + void addStringParam(const QString &, const QString &);
1.18 + void setOutputFile (const QString &);
1.19 + void setXSLFile (const QString &);
1.20 + void setInputFile (const QString &);
1.21 + void addOutput (const QString &);
1.22 + void process();
1.23 +private:
1.24 + QStringList stringParamKey;
1.25 + QStringList stringParamVal;
1.26 + QString outputFile;
1.27 + QString inputFile;
1.28 + QString xslFile;
1.29 + QString xsltprocessor;
1.30 + bool showOutput;
1.31 + ShowTextDialog *dia;
1.32 +};
1.33 +
1.34 +#endif