2018-01-26 17:06:56 +01:00

17 lines
208 B
C++

#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