]> git.tdb.fi Git - libs/core.git/blob - source/time/utils.h
Assimilate exceptions and RefPtr from mspmisc
[libs/core.git] / source / time / utils.h
1 /*
2 This file is part of libmspcore     
3 Copyright © 2006  Mikko Rasa, Mikkosoft Productions
4 Distributed under the LGPL
5 */
6 #ifndef MSP_TIME_UTILS_H_
7 #define MSP_TIME_UTILS_H_
8
9 #include <string>
10
11 namespace Msp {
12 namespace Time {
13
14 class TimeDelta;
15 class TimeStamp;
16
17 extern TimeStamp now();
18 extern std::string format_now(const std::string &);
19 extern TimeDelta get_cpu_time();
20 extern int sleep(const TimeDelta &);
21
22 } // namespace Time
23 } // namespace Msp
24
25 #endif