fix ctrl+A not working in location bar
[kdelibs.git] / kdoctools / xslt.h
blob50c64c4a0e6fc0bd336a7817e624173a0da835b9
1 #ifndef _MEIN_XSLT_H_
2 #define _MEIN_XSLT_H_
4 #include <libxml/parser.h>
5 #include <QtCore/QString>
6 #include <QtCore/QVector>
8 class QByteArray;
9 class KComponentData;
11 QString transform(const QString &file, const QString& stylesheet,
12 const QVector<const char *> &params = QVector<const char *>());
13 QString splitOut(const QString &parsed, int index);
14 void fillInstance(KComponentData &ins, const QString &srcdir = QString() );
15 bool saveToCache( const QString &contents, const QString &filename );
16 QString lookForCache( const QString &filename );
17 QByteArray fromUnicode( const QString &data );
18 void replaceCharsetHeader( QString &output );
20 extern bool warnings_exist;
21 extern QString *SRCDIR;
23 /**
24 * Compares two files and returns true if @param newer exists and is newer than
25 * @param older
26 **/
27 bool compareTimeStamps( const QString &older, const QString &newer );
28 #endif