StyleA.hpp 216 B

1234567891011121314151617
  1. #ifndef STYLEA_HPP
  2. #define STYLEA_HPP
  3. #include <QObject>
  4. /* clang-format off */
  5. /// Q_OBJECT on a single new line
  6. ///
  7. class StyleA : public QObject
  8. {
  9. Q_OBJECT
  10. public:
  11. StyleA();
  12. };
  13. /* clang-format on */
  14. #endif