mirror of
https://github.com/tumic0/QtPBFImagePlugin.git
synced 2024-11-28 05:34:48 +01:00
12 lines
135 B
C
12 lines
135 B
C
|
#ifndef COLOR_H
|
||
|
#define COLOR_H
|
||
|
|
||
|
#include <QColor>
|
||
|
|
||
|
namespace Color
|
||
|
{
|
||
|
QColor fromJsonString(const QString &str);
|
||
|
}
|
||
|
|
||
|
#endif // COLOR_H
|