51 std::string func_name_;
52 std::atomic<uint64_t> start_time_;
A simple time counter class to measure the execution time of a function.
Definition timecount.h:36
timecount(const std::string &func_name)
Construct a new timecount object The constructor will record the begin time of the function calling.
~timecount()
Destroy the timecount object The desctructor will record the end time of the function calling and cal...