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

#include <QObject>

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

#endif