SFML
Simple and Fast Multimedia Library
Loading...
Searching...
No Matches
Clock.hpp File Reference
#include <SFML/System/Export.hpp>
#include <chrono>
#include <ratio>
#include <type_traits>
Include dependency graph for Clock.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  sf::Clock
 Utility class that measures the elapsed time. More...

Namespaces

namespace  sf
namespace  sf::priv

Typedefs

using sf::priv::ClockImpl = std::conditional_t<std::chrono::high_resolution_clock::is_steady, std::chrono::high_resolution_clock, std::chrono::steady_clock>
 Chooses a monotonic clock of highest resolution.