/usr/include/KF5/XsltKde/xslt.h is in libkf5doctools-dev 5.28.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | #ifndef _MEIN_XSLT_H_
#define _MEIN_XSLT_H_
#include <libxml/parser.h>
#include <QtCore/QStandardPaths>
#include <QtCore/QString>
#include <QtCore/QVector>
class QByteArray;
QString transform(const QString &file, const QString &stylesheet,
const QVector<const char *> ¶ms = QVector<const char *>());
QString splitOut(const QString &parsed, int index);
QByteArray fromUnicode(const QString &data);
void replaceCharsetHeader(QString &output);
bool saveToCache(const QString &contents, const QString &filename);
void setupStandardDirs(const QString &srcdir = QString());
QString locateFileInDtdResource(const QString &file, const QStandardPaths::LocateOptions option=QStandardPaths::LocateFile);
QStringList locateFilesInDtdResource(const QString &file, const QStandardPaths::LocateOptions option=QStandardPaths::LocateFile);
QStringList getKDocToolsCatalogs();
#endif
|