project64/Source/Common/DateTime.h

15 lines
204 B
C++

#pragma once
#include <stdint.h>
#include <string>
class CDateTime
{
public:
CDateTime();
CDateTime & SetToNow(void);
std::string Format(const char * format);
private:
time_t m_time;
};