hello-world-cpp/task_3/counter_manager.h

12 lines
193 B
C
Raw Normal View History

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
class CounterManager {
public:
static long long int get_counter();
static int set_counter(long long int new_counter);
};