11 lines
151 B
C
11 lines
151 B
C
|
|
#pragma once
|
||
|
|
#include <iostream>
|
||
|
|
#include <chrono>
|
||
|
|
|
||
|
|
namespace CVrDateUtils
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* 获取时间年月日时分秒
|
||
|
|
*/
|
||
|
|
std::string GetNowTime();
|
||
|
|
};
|