qskinny/qmlexport/QskRgbValueQml.h
2022-04-22 08:21:20 +02:00

29 lines
603 B
C++

/******************************************************************************
* QSkinny - Copyright (C) 2016 Uwe Rathmann
* This file may be used under the terms of the QSkinny License, Version 1.0
*****************************************************************************/
#ifndef QSK_RGBVALUE_QML_H
#define QSK_RGBVALUE_QML_H
#include "QskQmlGlobal.h"
#include <QskRgbValue.h>
#include <qmetatype.h>
class QskRgbValueQml
{
Q_GADGET
public:
enum Enum
{
#define RGBVALUE( name, value ) name = value,
QSK_RGB_VALUES
#undef RGBVALUE
};
Q_ENUM( Enum )
};
#endif