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:
|
2016-09-16 21:37:27 +00:00
|
|
|
time_t m_time;
|
2021-03-16 22:48:00 +00:00
|
|
|
};
|