opynsim
Unofficial C++ Documentation
Loading...
Searching...
No Matches
perf_clock.h
Go to the documentation of this file.
1#pragma once
2
3#include <chrono>
4
5namespace osc
6{
7 // A `std::chrono`-compatible clock that is steady (i.e. always monotonically
8 // increases) and has a high-resolution enough for performance measurements.
9 using PerfClock = std::chrono::steady_clock;
10}
Definition custom_decoration_generator.h:5
std::chrono::steady_clock PerfClock
Definition perf_clock.h:9