blob: 35158a4b0151cb37d7e397b05f6f5aed99b9f656 [file] [log] [blame]
#ifndef STYLEA_HPP
#define STYLEA_HPP
#include "UtilityMacros.hpp"
#include <QStylePlugin>
class StyleA : public QStylePlugin
{
Q_OBJECT
// Json file in source local directory
Q_PLUGIN_METADATA(IID "org.styles.A" FILE "StyleA.json")
A_CUSTOM_MACRO(SomeArg, "StyleA_Custom.json", AnotherArg)
public:
QStyle* create(const QString& key);
};
#endif