testGenLib.hpp 223 B

1234567891011121314151617
  1. #ifndef TEST3_HPP
  2. #define TEST3_HPP
  3. #include <QObject>
  4. #include "simpleLib.hpp"
  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