#ifndef TIMER_H #define TIMER_H #include class Timer : public QObject { Q_OBJECT public: explicit Timer(QObject *parent = nullptr); public slots: void tick(); }; #endif // TIMER_H