project64/Source/Common/DateTime.h

15 lines
206 B
C
Raw Normal View History

2016-02-24 06:59:29 +00:00
#pragma once
2021-04-12 06:34:26 +00:00
#include <stdint.h>
2021-04-12 09:41:28 +00:00
#include <string>
2016-02-24 06:59:29 +00:00
class CDateTime
{
public:
CDateTime();
CDateTime & SetToNow (void);
std::string Format (const char * format);
private:
time_t m_time;
};