https://github.com/Kitware/CMake
Raw File
Tip revision: f478fa633daeb1432805821adddc40730ffd283d authored by Brad King on 07 September 2018, 10:40:49 UTC
CMake 3.12.2
Tip revision: f478fa6
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