19 lines
283 B
C++
19 lines
283 B
C++
#ifndef TIME_COUNT_H
|
|
#define TIME_COUNT_H
|
|
|
|
#include <string>
|
|
#include <chrono>
|
|
|
|
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 |