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

16 lines
171 B
C++

#ifndef STYLEA_HPP
#define STYLEA_HPP
#include <QObject>
/// Q_OBJECT on a single new line
///
class StyleA : public QObject
{
Q_OBJECT
public:
StyleA();
};
#endif