14 void Start() { gettimeofday(&m_start, NULL); }
17 gettimeofday(&m_end, NULL);
18 double timeSec = m_end.tv_sec - m_start.tv_sec +
19 (m_end.tv_usec - m_start.tv_usec)*1E-6;
24 struct timeval m_start, m_end;
double StopWatch()
Definition: Timer.h:16
void Start()
Definition: Timer.h:14