StyleB.hpp 222 B

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