hello-world-cpp/task_3/counter_manager.h
2025-01-11 02:35:25 +10:00

11 lines
173 B
C++

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