From 78daa605c5abd64054dad9f5fcfee638f8c515e0 Mon Sep 17 00:00:00 2001 From: Romain Forlot Date: Thu, 9 Mar 2017 16:01:08 +0100 Subject: Change FrequencyClock struct to class and rename it. Change-Id: I1076ad90e14815f3d0ab71ca9fa359d1d3c1748d Signed-off-by: Romain Forlot --- src/utils/timer.cpp | 9 +++++++-- src/utils/timer.hpp | 23 ++++++++++++++--------- 2 files changed, 21 insertions(+), 11 deletions(-) (limited to 'src/utils') diff --git a/src/utils/timer.cpp b/src/utils/timer.cpp index 8dec7066..433fcb26 100644 --- a/src/utils/timer.cpp +++ b/src/utils/timer.cpp @@ -15,7 +15,7 @@ * limitations under the License. */ -#include "utils/timer.hpp" +#include "timer.hpp" long long int systemTimeMs() { @@ -28,4 +28,9 @@ long long int systemTimeMs() t_msec.millitm; } return timestamp_msec; -} \ No newline at end of file +} + + +frequency_clock_t::frequency_clock_t() + : frequency_{0.0}, last_tick_{0}, time_function_{nullptr} +{} \ No newline at end of file diff --git a/src/utils/timer.hpp b/src/utils/timer.hpp index 7d0e4669..c8b7fb90 100644 --- a/src/utils/timer.hpp +++ b/src/utils/timer.hpp @@ -27,19 +27,24 @@ typedef long long int (*TimeFunction)(); /** - * @struct FrequencyClock + * @class frequency_clock_t * @brief A frequency counting clock. * - * @var FrequencyClock::frequency + * @var frequency_clock_t::frequency * the clock frequency in Hz. - * @var FrequencyClock::last_time + * @var frequency_clock_t::last_time * the last time (in milliseconds since startup) that the clock * ticked. - * @var FrequencyClock::time_function + * @var frequency_clock_t::time_function * a function returning current time */ -typedef struct { - float frequency; - unsigned long lastTick; - TimeFunction timeFunction; -} FrequencyClock; \ No newline at end of file +class frequency_clock_t +{ +private: + float frequency_; + unsigned long last_tick_; + TimeFunction time_function_; + +public: + frequency_clock_t(); +} \ No newline at end of file -- cgit 1.2.3-korg