/* * Copyright (C) 2013 Antony Woods * All rights reserved. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. * * Author: Antony Woods */ #include "entityx/help/Timer.h" namespace entityx { namespace help { Timer::Timer() { _start = std::chrono::system_clock::now(); } Timer::~Timer() { } void Timer::restart() { _start = std::chrono::system_clock::now(); } double Timer::elapsed() { return std::chrono::duration(std::chrono::system_clock::now() - _start).count(); } } // namespace help } // namespace entityx