blob: 3c093b914b622efadbc183b870c6742a51e3bd68 [file] [log] [blame]
#ifndef STYLED_HPP
#define STYLED_HPP
#include <QStylePlugin>
#include "UtilityMacros.hpp"
class StyleD : public QStylePlugin
{
Q_OBJECT
// Json file in global sub director
Q_PLUGIN_METADATA(IID "org.styles.D" FILE "sub/StyleD.json")
A_CUSTOM_MACRO(SomeArg, "sub/StyleD_Custom.json", AnotherArg)
public:
QStyle* create(const QString& key);
};
#endif