blob: 1c002d2021a62a8b80e3f6f9d2625937963030bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef Clock_Ticks__h_
#define Clock_Ticks__h_
/**
* @file Clock_Ticks.h
*
* @author Carlos O'Ryan <coryan@atdesk.com>
*/
namespace Clock_Ticks
{
/// Return the number of clock ticks per second
long get_hz (void);
/// Return the number of microseconds per tick
int get_usecs_per_tick (void);
}
#endif /* Clock_Ticks__h_ */
|