#pragma once #include namespace mbgl { namespace platform { // Returns the current time. Abstracted because some platforms // will not allow direct access to the current time via syscall. std::chrono::time_point now(); } // namespace platform } // namespace mbgl