1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#ifndef UPTIME_H #define UPTIME_H #include <stdint.h> class Uptime { private: Uptime(const Uptime ©); public: Uptime () {} uint64_t get_s(); uint64_t get_us(); uint64_t get_cycles(); void tick_s() {}; }; extern Uptime uptime; #endif