summaryrefslogtreecommitdiff
path: root/Tests/QtAutogen/RerunMocPlugin/MocPlugin/StyleB.hpp
blob: 15b79c598352977ae473ad6d44760b0df4f4d5e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef STYLEB_HPP
#define STYLEB_HPP

#include "UtilityMacros.hpp"
#include <QStylePlugin>

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