GrpcPrint/PrintS/utils/TimeHelper.h

15 lines
225 B
C
Raw Permalink Normal View History

2024-03-19 17:45:12 +08:00
#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);
};