18 lines
216 B
C++
Raw Normal View History

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