17 lines
208 B
C++
Raw Normal View History

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