#ifndef _UTIL_TOOLS_HPP_ #define _UTIL_TOOLS_HPP_ #include using namespace std; namespace UtilTools{ static long get_cur_time_ms() { chrono::time_point tpMicro = chrono::time_point_cast(chrono::system_clock::now()); return tpMicro.time_since_epoch().count(); } } #endif