Files
WrenchBoradWeb/wrenchboard/src/include/timer.h
T
2019-05-31 11:26:35 -04:00

21 lines
226 B
C++

#ifndef __timer_h__
#define __timer_h__
class CTimer
{
public:
CTimer( );
void init();
bool timeout( unsigned long t );
void wake( unsigned long );
unsigned long elapsed( );
private:
unsigned long prev;
};
#endif