author | insilmaril |
Mon Apr 10 11:21:35 2006 +0000 (2006-04-10) | |
changeset 290 | 04b9fcb185ba |
permissions | -rw-r--r-- |
1 #ifndef XSLTPROC_H
2 #define XSLTPROC_H
4 #include <qstring.h>
5 #include <qstringlist.h>
7 #include "showtextdialog.h"
9 class XSLTProc
10 {
11 public:
12 XSLTProc();
13 ~XSLTProc();
14 void addStringParam(const QString &, const QString &);
15 void setOutputFile (const QString &);
16 void setXSLFile (const QString &);
17 void setInputFile (const QString &);
18 void addOutput (const QString &);
19 void process();
20 private:
21 QStringList stringParamKey;
22 QStringList stringParamVal;
23 QString outputFile;
24 QString inputFile;
25 QString xslFile;
26 QString xsltprocessor;
27 bool showOutput;
28 ShowTextDialog *dia;
29 };
31 #endif