summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutogen/mocPlugin/StyleC.hpp
blob: 9f71d75da1d773646ad7756af9f3ae16b0923430 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef STYLEC_HPP
#define STYLEC_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")
public:
  QStyle* create(const QString& key);
};

#endif