blob: 66735b63bfbff496677003d873079e1fcec72118 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef STYLEA_HPP
#define STYLEA_HPP
#include <QObject>
/// Q_OBJECT on a single new line
///
class StyleA : public QObject
{
Q_OBJECT
public:
StyleA();
};
#endif
|