15 lines
222 B
C
15 lines
222 B
C
|
#pragma once
|
||
|
#include "../stdafx.h"
|
||
|
#include <time.h>
|
||
|
|
||
|
class TimeHelper
|
||
|
{
|
||
|
public:
|
||
|
TimeHelper();
|
||
|
~TimeHelper();
|
||
|
static string GetStrNow();
|
||
|
static time_t Str2Time(string strtime);
|
||
|
static string Time2Str(time_t tt);
|
||
|
};
|
||
|
|