IncA.hpp 184 B

123456789101112131415
  1. #ifndef INCA_HPP
  2. #define INCA_HPP
  3. #include <QObject>
  4. /// @brief Test moc include pattern in the source file
  5. ///
  6. class IncA : public QObject
  7. {
  8. Q_OBJECT
  9. public:
  10. IncA();
  11. };
  12. #endif