mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-06 12:07:57 +00:00
15 lines
269 B
C++
15 lines
269 B
C++
#include "timer.h"
|
|
|
|
#include "../../ClockReceiver/TimeTypes.hpp"
|
|
|
|
#include <QDebug>
|
|
|
|
Timer::Timer(QObject *parent) : QObject(parent) {}
|
|
|
|
void Timer::tick() {
|
|
// static int64_t last = 0;
|
|
// const auto now = Time::nanos_now();
|
|
// qDebug() << now - last;
|
|
// last = now;
|
|
}
|