Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef KNITIMER_H
00022 #define KNITIMER_H
00023
00024 #include <ctime>
00025
00026 #ifndef WIN32 // POSIX 1b
00027 #include <sys/time.h>
00028 #endif
00029
00030 namespace KNI {
00031
00036 void sleep(long time);
00037
00041 class Timer {
00042 private:
00043 long _timeout;
00044
00045 #ifdef WIN32
00046 clock_t _ct;
00047 #else
00048 struct timeval _ct;
00049 #endif
00050
00052 long _ElapsedTime() const;
00053
00054 public:
00055 Timer();
00056 Timer(long timeout);
00057
00058 void Set(long timeout);
00059 void Start();
00060
00061 void Set_And_Start(long timeout);
00062
00066 bool Elapsed() const;
00067
00071 long ElapsedTime() const;
00072
00076 void WaitUntilElapsed() const;
00077
00078 };
00079
00080
00081
00082 }
00083
00084 #endif