mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-14 11:02:19 +01:00
13 lines
273 B
C
13 lines
273 B
C
|
#ifndef GLOBALFUNCTIONS_H
|
||
|
#define GLOBALFUNCTIONS_H
|
||
|
|
||
|
#include <QByteArray>
|
||
|
#include <QPixmap>
|
||
|
#include <QBuffer>
|
||
|
#include <QFile>
|
||
|
|
||
|
QByteArray qz_pixmapToByteArray(const QPixmap &pix);
|
||
|
QByteArray qz_readAllFileContents(const QString &filename);
|
||
|
|
||
|
#endif // GLOBALFUNCTIONS_H
|