2025-01-13 19:59:39 +10:00
|
|
|
#include "my_time.h"
|
|
|
|
|
2025-01-11 02:17:31 +10:00
|
|
|
#include <string>
|
|
|
|
#include <fcntl.h>
|
2025-01-10 16:59:44 +00:00
|
|
|
#include <unistd.h>
|
2025-01-11 02:17:31 +10:00
|
|
|
|
2025-01-13 19:59:39 +10:00
|
|
|
#include <dirent.h>
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
2025-01-11 02:17:31 +10:00
|
|
|
|
|
|
|
class CounterManager {
|
|
|
|
public:
|
|
|
|
static long long int get_counter();
|
|
|
|
static int set_counter(long long int new_counter);
|
|
|
|
|
|
|
|
};
|