1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#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