forked from organicmaps/organicmaps
Fixed base/Timer to show correct log time on the devices
This commit is contained in:
parent
d36c4fe365
commit
1c990f35eb
1 changed files with 7 additions and 8 deletions
|
@ -1,24 +1,23 @@
|
|||
#pragma once
|
||||
#include "base.hpp"
|
||||
#include "../std/ctime.hpp"
|
||||
#include <boost/date_time/posix_time/posix_time.hpp>
|
||||
|
||||
namespace my
|
||||
{
|
||||
// TODO: Check std::clock() on iPhone and iPhone Simulator.
|
||||
|
||||
// Cross platform timer.
|
||||
/// Cross platform timer
|
||||
class Timer
|
||||
{
|
||||
public:
|
||||
Timer() {Reset();}
|
||||
Timer() { Reset(); }
|
||||
double ElapsedSeconds() const
|
||||
{
|
||||
return (clock() - m_StartTime) / static_cast<double>(CLOCKS_PER_SEC);
|
||||
return (boost::posix_time::microsec_clock::local_time() - m_StartTime).total_milliseconds()
|
||||
/ 1000.0;
|
||||
}
|
||||
|
||||
void Reset() { m_StartTime = clock(); }
|
||||
void Reset() { m_StartTime = boost::posix_time::microsec_clock::local_time(); }
|
||||
private:
|
||||
clock_t m_StartTime;
|
||||
boost::posix_time::ptime m_StartTime;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue