kde-playground/khelpcenter/slave/xslt.h
Ivailo Monev a9b00154bc generic: replace forward class declarations with header inclusions
Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
2019-07-31 18:05:48 +00:00

24 lines
744 B
C++

#ifndef _MEIN_XSLT_H_
#define _MEIN_XSLT_H_
#include <libxml/parser.h>
#include <QtCore/QString>
#include <QtCore/QVector>
#include <QByteArray>
#include <QIODevice>
class KComponentData;
QString transform(const QString &file, const QString& stylesheet,
const QVector<const char *> &params = QVector<const char *>());
QString splitOut(const QString &parsed, int index);
void fillInstance(KComponentData &ins, const QString &srcdir = QString() );
bool saveToCache( const QString &contents, const QString &filename );
QByteArray fromUnicode( const QString &data );
void replaceCharsetHeader( QString &output );
QIODevice *getBZip2device(const QString &fileName );
extern bool warnings_exist;
extern QString *SRCDIR;
#endif