From b2c35cdf69a9084806ac7930cf4475980d596cf6 Mon Sep 17 00:00:00 2001 From: Roland Reichwein Date: Sat, 4 Jan 2025 11:28:20 +0100 Subject: Separate out implementation from headers --- Timer.h | 37 ++++++++----------------------------- 1 file changed, 8 insertions(+), 29 deletions(-) (limited to 'Timer.h') diff --git a/Timer.h b/Timer.h index 81192d6..c42db78 100644 --- a/Timer.h +++ b/Timer.h @@ -11,39 +11,18 @@ using clock_type = std::chrono::high_resolution_clock; class Timer { public: - Timer(std::chrono::milliseconds interval, bool cyclic) : m_start_time(clock_type::now()), m_interval(interval), m_running(false), m_cyclic(cyclic) - {} + Timer(std::chrono::milliseconds interval, bool cyclic); // connect to this signal boost::signals2::signal elapsed; - void start() - { - m_running = true; - m_start_time = clock_type::now(); - } - - void stop() - { - m_running = false; - } - - bool is_elapsed() - { - return m_start_time + m_interval < clock_type::now(); - } - - void update() - { - if (m_running && is_elapsed()) { - elapsed(); - if (m_cyclic) { - start(); - } else { - stop(); - } - } - } + void start(); + + void stop(); + + bool is_elapsed() const; + + void update(); private: std::chrono::time_point m_start_time; -- cgit v1.2.3