#ifndef SYSTEM_TIME #define SYSTEM_TIME #include namespace am { class system_time { private: system_time() {}; ~system_time() {}; public: static uint64_t get_time_ns(); }; } // namespace am #endif // !SYSTEM_TIME