16 lines
229 B
C
Raw Normal View History

2025-01-13 19:59:39 +10:00
#ifndef MY_TIME_H
#define MY_TIME_H
#include <string>
#include <time.h>
#include <sys/time.h>
class MyTime {
public:
static std::string get_current_time();
static long long int get_timestamp();
};
#endif // MY_TIME_H