IncB.hpp 184 B

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