mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 10:22:50 +00:00
24 lines
744 B
C++
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 *> ¶ms = 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
|