#ifndef OBJECT_HPP #define OBJECT_HPP #include class Object : public QObject { Q_OBJECT public: Q_SLOT void aSlot(){}; }; #endif