From 90e20942222d7b6142dbdaa05ab7e81bc0f79904 Mon Sep 17 00:00:00 2001 From: Romain Forlot Date: Mon, 13 Feb 2017 23:29:01 +0000 Subject: Added needed functions for basics decode needs. Change-Id: Ic6202927058ff693c7c5c9b04e25b7be2fba340c Signed-off-by: Romain Forlot --- timer.h | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) (limited to 'timer.h') diff --git a/timer.h b/timer.h index fa329eb..76eb51d 100644 --- a/timer.h +++ b/timer.h @@ -6,7 +6,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, @@ -23,17 +23,11 @@ * * frequency - the clock frequency in Hz. * last_time - the last time (in milliseconds since startup) that the clock - * ticked. + * ticked. * time_function - a function returning current time in ms -typedef struct { - float frequency; - unsigned long lastTick; - TimeFunction timeFunction; -} FrequencyClock; */ - -class FrequencyClock_c { - private: +typedef struct { float frequency; - unsigned long last_tick; -} \ No newline at end of file + unsigned long lastTick; + TimeFunction timeFunction; +} FrequencyClock; -- cgit 1.2.3-korg