Commit 6410185f authored by captainwong's avatar captainwong

update

parent 217b0ed5
#pragma once
#include <chrono>
class ScopedTimeDuration
{
public:
ScopedTimeDuration() { _clock = std::chrono::system_clock::now(); }
~ScopedTimeDuration(){}
private:
std::chrono::system_clock::time_point _clock;
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment