blob: 8ce8d776e8cd070bee1b083165af82c94d5f9155 [file] [log] [blame]
#ifndef STYLEB_HPP
#define STYLEB_HPP
#include <QStylePlugin>
#include "UtilityMacros.hpp"
class StyleB : public QStylePlugin
{
Q_OBJECT
// Json file in source local subdirectory
Q_PLUGIN_METADATA(IID "org.styles.B" FILE "jsonIn/StyleB.json")
A_CUSTOM_MACRO(org.styles.B, "jsonIn/StyleB_Custom.json", AnotherArg)
public:
QStyle* create(const QString& key);
};
#endif