2018-01-26 17:06:56 +01:00
|
|
|
#ifndef STYLEB_HPP
|
|
|
|
#define STYLEB_HPP
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
|
|
|
/* clang-format off */
|
2018-04-23 21:13:27 +02:00
|
|
|
/// Q_OBJECT behind a brace on a new line
|
2018-01-26 17:06:56 +01:00
|
|
|
///
|
|
|
|
class StyleB : public QObject
|
|
|
|
{ Q_OBJECT
|
|
|
|
public:
|
|
|
|
StyleB();
|
|
|
|
};
|
|
|
|
/* clang-format on */
|
|
|
|
|
|
|
|
#endif
|