14 lines
215 B
C
14 lines
215 B
C
|
|
#ifndef COMMON_H
|
|||
|
|
#define COMMON_H
|
|||
|
|
|
|||
|
|
#include <iostream>
|
|||
|
|
#include <string>
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* @brief GetCurrentTime <EFBFBD><EFBFBD>ȡ<EFBFBD><EFBFBD>ǰʱ<EFBFBD><EFBFBD>
|
|||
|
|
* @return
|
|||
|
|
*/
|
|||
|
|
std::string getCurrentTimeString();
|
|||
|
|
std::string getCurrentShortTimeString();
|
|||
|
|
|
|||
|
|
#endif
|