https://github.com/Kitware/CMake
Raw File
Tip revision: c4f7eb3f0b39ed679296b01158195afc677a0df9 authored by Brad King on 28 November 2023, 14:52:37 UTC
CMake 3.27.9
Tip revision: c4f7eb3
StyleB.hpp
#ifndef STYLEB_HPP
#define STYLEB_HPP

#include <QObject>

/* clang-format off */
/// Q_OBJECT behind a brace on a new line
///
class StyleB : public QObject
{ Q_OBJECT
public:
  StyleB();
};
/* clang-format on */

#endif
back to top