You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
222 B
17 lines
222 B
7 years ago
|
#ifndef STYLEB_HPP
|
||
|
#define STYLEB_HPP
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
/* clang-format off */
|
||
7 years ago
|
/// Q_OBJECT behind a brace on a new line
|
||
7 years ago
|
///
|
||
|
class StyleB : public QObject
|
||
|
{ Q_OBJECT
|
||
|
public:
|
||
|
StyleB();
|
||
|
};
|
||
|
/* clang-format on */
|
||
|
|
||
|
#endif
|