mirror of
https://github.com/tumic0/QtPBFImagePlugin.git
synced 2024-11-27 21:24:48 +01:00
14 lines
151 B
C
14 lines
151 B
C
|
#ifndef FONT_H
|
||
|
#define FONT_H
|
||
|
|
||
|
#include <QFont>
|
||
|
|
||
|
class QJsonArray;
|
||
|
|
||
|
namespace Font
|
||
|
{
|
||
|
QFont fromJsonArray(const QJsonArray &json);
|
||
|
}
|
||
|
|
||
|
#endif // FONT_H
|