18 lines
203 B
C++
18 lines
203 B
C++
//
|
|
// Created by erki on 24/10/23.
|
|
//
|
|
|
|
#include "cpptick/timer.hpp"
|
|
|
|
#include "cpptick/scheduler.hpp"
|
|
|
|
namespace cpptick
|
|
{
|
|
|
|
void Timer::start()
|
|
{
|
|
scheduler_->storeTimer(this);
|
|
}
|
|
|
|
}// namespace cpptick
|