project64/Source/Common/DateTime.h

15 lines
204 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();
2022-10-03 08:04:42 +00:00
CDateTime & SetToNow(void);
std::string Format(const char * format);
2016-02-24 06:59:29 +00:00
private:
time_t m_time;
};