18 lines
257 B
C++
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);
|
|
|
|
};
|