hello-world-cpp/task_3/counter_manager.h
2025-01-13 19:59:39 +10:00

18 lines
257 B
C++

#include "my_time.h"
#include <string>
#include <fcntl.h>
#include <unistd.h>
#include <dirent.h>
#include <iostream>
class CounterManager {
public:
static long long int get_counter();
static int set_counter(long long int new_counter);
};