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