hdac SDK
SDK for hdac blockchain development
utiltime.h
1 #ifndef UTILTIME_H
2 #define UTILTIME_H
3 
4 #include <cstdint>
5 #include <string>
6 
7 int64_t GetTime();
8 int64_t GetTimeMillis();
9 int64_t GetTimeMicros();
10 
11 std::string DateTimeStrFormat(const char* pszFormat, int64_t nTime);
12 
13 #endif // UTILTIME_H