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 #ifndef UTIMER_H
00021 #define UTIMER_H
00022
00023 #include "rtabmap/utilite/UtiLiteExp.h"
00024
00025 #ifdef _WIN32
00026 #include <windows.h>
00027 #else
00028 #include <sys/time.h>
00029 #include <time.h>
00030 #endif
00031
00046 class UTILITE_EXP UTimer
00047 {
00048 public:
00049 UTimer();
00050 ~UTimer();
00051
00057 static double now();
00058
00062 void start();
00063
00067 void stop();
00068
00075 double elapsed() {return getElapsedTime();}
00076 double getElapsedTime();
00077
00084 UTILITE_DEPRECATED(double getInterval());
00085
00094 double restart() {return ticks();}
00095 double ticks();
00096
00097 private:
00098 #ifdef _WIN32
00099 LARGE_INTEGER startTimeRecorded_;
00100 LARGE_INTEGER stopTimeRecorded_;
00101
00102 LARGE_INTEGER frequency_;
00103 #else
00104 struct timeval startTimeRecorded_;
00105 struct timeval stopTimeRecorded_;
00106 #endif
00107 };
00108
00109 #endif //UTIMER_H