Files
webcamservice/TimeCount.h
2024-12-15 16:18:16 +08:00

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