Added needed functions for basics decode needs.
[apps/low-level-can-service.git] / timer.h
diff --git a/timer.h b/timer.h
index fa329eb..76eb51d 100644 (file)
--- 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,
  *
  * 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;