# HG changeset patch
# User insilmaril
# Date 1140008095 0
# Node ID 28cda321f8da2a967a2fb181ff0f3182e4ee42ca
# Parent  30c4a6c7ff100f385ae360c1690349f5dc816671
1.7.9 Import of KDE bookmarks, some _de translations

diff -r 30c4a6c7ff10 -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 <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