summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutogen/RerunMocPlugin/MocPlugin/StyleC.hpp
blob: 53171e32cbaa7fc42d2f04eef6c2aa0e4e3244cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef STYLEC_HPP
#define STYLEC_HPP

#include <QStylePlugin>

#include "UtilityMacros.hpp"

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(org.styles.C, "StyleC_Custom.json", AnotherArg)
public:
  QStyle* create(const QString& key);
};

#endif