#pragma once #include class Timer { public: Timer(void); ~Timer(void); private: std::chrono::time_point m_StartTimePoint; };