blob: 52a887acfb9fd5f3272a2459634b63ea29f67093 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef STYLEC_HPP
#define STYLEC_HPP
#include "StyleCommon.hpp"
#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
|