X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Ftime%2Futils.h;h=00b6ef86c274dca75cdaac1bd38eeaa353b3819d;hp=291655946123135059c61b1b4bd0a316c25b15da;hb=be8ea216d23bf36bdfb2d3e302638782575fc136;hpb=967785734be5c3fc6f75da122c2d93ebbb338271 diff --git a/source/time/utils.h b/source/time/utils.h index 2916559..00b6ef8 100644 --- a/source/time/utils.h +++ b/source/time/utils.h @@ -9,10 +9,16 @@ namespace Time { class TimeDelta; class TimeStamp; -extern TimeStamp now(); -extern std::string format_now(const std::string &); -extern TimeDelta get_cpu_time(); -extern int sleep(const TimeDelta &); +/** Returns the current timestamp. */ +TimeStamp now(); + +std::string format_now(const std::string &); + +/** Returns the CPU time used by the program so far. */ +TimeDelta get_cpu_time(); + +/** Sleeps for the given duration. */ +void sleep(const TimeDelta &); } // namespace Time } // namespace Msp