Skip to content

Instantly share code, notes, and snippets.

@yfzhang
yfzhang / CppTimer.md
Created September 23, 2018 22:21 — forked from gongzhitaao/CppTimer.md
Simple high resolution timer in C++

A simple Timer class that provides satisfying resolution.

API

  • Timer() constructs the timer.
  • .reset() resets the timer
  • .elapsed() returns elapsed seconds in double since last reset.