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

#include <QStylePlugin>

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

#endif