From f4b33383f82da6621ab065fa31962c6f0b52c27d Mon Sep 17 00:00:00 2001 From: vng Date: Fri, 3 Aug 2012 08:41:21 +0300 Subject: [PATCH] Add some comments to my::Timer API. --- base/timer.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/base/timer.hpp b/base/timer.hpp index 232e76fc10..af6cb32272 100644 --- a/base/timer.hpp +++ b/base/timer.hpp @@ -15,7 +15,9 @@ class Timer public: Timer(); + /// @return current UTC time in seconds, elapsed from 1970. static double LocalTime(); + /// @return Elapsed time in seconds from start (@see Reset). double ElapsedSeconds() const; void Reset(); };