mirror of
https://github.com/TomHarte/CLK.git
synced 2024-12-01 11:49:58 +00:00
18 lines
203 B
C++
18 lines
203 B
C++
#ifndef TIMER_H
|
|
#define TIMER_H
|
|
|
|
#include <QObject>
|
|
|
|
class Timer : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit Timer(QObject *parent = nullptr);
|
|
|
|
public slots:
|
|
void tick();
|
|
};
|
|
|
|
#endif // TIMER_H
|