#ifndef TIME_COUNT_H #define TIME_COUNT_H #include #include class USE_TIME { public: USE_TIME(std::string str = ""); ~USE_TIME(); private: std::string strTmp; std::chrono::system_clock::time_point start; std::chrono::system_clock::time_point end; }; #endif