blob: 5ba0a8768811079df8443f76c688c4e2a26b459a [file] [log] [blame]
#ifndef STYLEA_HPP
#define STYLEA_HPP
#include <QObject>
/* clang-format off */
/// Q_OBJECT on a single new line
///
class StyleA : public QObject
{
Q_OBJECT
public:
StyleA();
};
/* clang-format on */
#endif