1
0
forked from fsfw/fsfw

linux time lib improvements

stop watch other function used (more precise for linux)
This commit is contained in:
2020-05-29 02:23:14 +02:00
parent ccf79ab5b6
commit 3d2935ac69
4 changed files with 31 additions and 27 deletions

View File

@ -1,9 +1,3 @@
/**
* @file Stopwatch.h
*
* @date 08.04.2020
*/
#ifndef FRAMEWORK_TIMEMANAGER_STOPWATCH_H_
#define FRAMEWORK_TIMEMANAGER_STOPWATCH_H_
#include <framework/timemanager/Clock.h>
@ -14,12 +8,13 @@ enum class StopwatchDisplayMode {
};
/**
* @brief Simple Stopwatch implementation to measure elapsed time
* @brief Simple Stopwatch implementation to measure elapsed time
* @details
* This class can be used to measure elapsed times. It also displays elapsed
* times automatically on destruction if not explicitely deactivated in the
* constructor. The default time format is the elapsed time in miliseconds
* as a float.
* @author R. Mueller
*/
class Stopwatch {
public: