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

#include <QObject>

/* clang-format off */
/// Q_OBJECT on a single new line
///
class StyleA : public QObject
{
  Q_OBJECT
public:
  StyleA();
};
/* clang-format on */

#endif