summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutogen/RerunMocPlugin/MocPlugin/StyleB.hpp
blob: 7550d0c3b621c61682518bb839ee633a57d94047 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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(SomeArg, "jsonIn/StyleB_Custom.json", AnotherArg)
public:
  QStyle* create(const QString& key);
};

#endif