]> git.sven.stormbind.net Git - sven/vym.git/blobdiff - xsltproc.h
New upstream version 2.9.22
[sven/vym.git] / xsltproc.h
diff --git a/xsltproc.h b/xsltproc.h
deleted file mode 100644 (file)
index 6c28f86..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-#ifndef XSLTPROC_H
-#define XSLTPROC_H
-
-#include <qstring.h>
-#include <qstringlist.h>
-
-#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