|
OpenTTD Source
14.0-beta3
|
#include <debug.h>
Data Structures | |
| struct | State |
| Persistent state for TicToc profiling. More... | |
Public Member Functions | |
| TicToc (State &state) | |
Data Fields | |
| State & | state |
| std::chrono::high_resolution_clock::time_point | chrono_start |
| real time count. | |
TicToc profiling.
Usage: static TicToc::State state("A name", 1); TicToc tt(state); –Do your code–