mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 10:52:52 +00:00
15 lines
371 B
C++
15 lines
371 B
C++
#ifndef _MEIN_XSLT_KDE_H_
|
|
#define _MEIN_XSLT_KDE_H_
|
|
|
|
#include <QtCore/QString>
|
|
#include <QtCore/QVector>
|
|
|
|
class QByteArray;
|
|
class QIODevice;
|
|
class KComponentData;
|
|
|
|
void fillInstance(KComponentData &ins, const QString &srcdir = QString() );
|
|
bool saveToCache( const QString &contents, const QString &filename );
|
|
QIODevice *getBZip2device(const QString &fileName );
|
|
|
|
#endif
|