summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutogen/mocPlugin/StyleB.hpp
blob: ba891270de3c925880f799759563399a28cc8db9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef STYLEB_HPP
#define STYLEB_HPP

#include <QStylePlugin>

class StyleB : public QStylePlugin
{
  Q_OBJECT
  // Json file in local subdirectory
  Q_PLUGIN_METADATA(IID "org.styles.B" FILE "jsonIn/StyleB.json")
public:
  QStyle* create(const QString& key);
};

#endif