18 lines
357 B
C++
Raw Normal View History

2017-07-20 19:35:53 +02:00
#ifndef STYLEC_HPP
#define STYLEC_HPP
2018-01-26 17:06:56 +01:00
#include "UtilityMacros.hpp"
2017-07-20 19:35:53 +02:00
#include <QStylePlugin>
class StyleC : public QStylePlugin
{
Q_OBJECT
// Json file in global root directory
Q_PLUGIN_METADATA(IID "org.styles.C" FILE "StyleC.json")
A_CUSTOM_MACRO(SomeArg, "StyleC_Custom.json", AnotherArg)
public:
QStyle* create(const QString& key);
};
#endif