mirror of
https://github.com/tumic0/QtPBFImagePlugin.git
synced 2024-11-24 03:35:54 +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
|