You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
333 B
23 lines
333 B
#ifndef UNTITLED1_UTILS_H
|
|
#define UNTITLED1_UTILS_H
|
|
|
|
|
|
#define IN_UNIX 0 // 确定当前运行的操作系统(需要通过系统调用获得时间)
|
|
namespace utils {
|
|
#if IN_UNIX
|
|
|
|
#include <sys/time.h>
|
|
#include <ctime>
|
|
|
|
double get_time();
|
|
|
|
#else
|
|
#include <windows.h>
|
|
|
|
double get_time();
|
|
|
|
#endif
|
|
}
|
|
|
|
|
|
#endif //UNTITLED1_UTILS_H
|
|
|