#ifndef WATCH_H
#define WATCH_H
#include "Platform.h"
class Watch
{
public:
Watch(void);
void Start();
void Stop();
void Reset();
long GetElapsedTime();
private:
//struct timespec _startTime;
//struct timespec _stopTime;
sys_time_t _startTime;
sys_time_t _stopTime;
bool _isRunning;
};
//long diff(timespec t1, timespec t2);
#endif