Files
panda-meb/drivers/windows/pandaJ2534DLL Test/Timer.cpp
Jessy Diamond Exum 71b7f9427a J2534_WIN: CAN Tests.
2017-09-14 18:01:06 -07:00

17 lines
407 B
C++

#include "stdafx.h"
#include "Timer.h"
Timer::Timer()
{
start = std::chrono::time_point_cast<std::chrono::milliseconds>(clock::now());
}
// gets the time elapsed from construction.
long /*milliseconds*/ Timer::getTimePassed(){
// get the new time
auto end = std::chrono::time_point_cast<std::chrono::milliseconds>(clock::now());
// return the difference of the times
return (end - start).count();
}