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