testGenLib.hpp 221 B

12345678910111213141516
  1. #ifndef TEST3_HPP
  2. #define TEST3_HPP
  3. #include "simpleLib.hpp"
  4. #include <QObject>
  5. // This object triggers the AUTOMOC on this file
  6. class LObject : public QObject
  7. {
  8. Q_OBJECT
  9. public:
  10. Q_SLOT
  11. void aSlot(){};
  12. };
  13. #endif