| 1234567891011121314151617 |
- #ifndef __TIMEHANDLER_H__
- #define __TIMEHANDLER_H__
- #include <ctime>
- class timeHandler
- {
- public:
- clock_t start, last, mem;
- timeHandler():start(clock()){last=clock();mem=0;};
- long getDif(){long ret=clock()-last;last=clock();return ret;};
- void update(){last=clock();};
- void remember(){mem=clock();};
- long memDif(){return mem-clock();};
- };
- #endif // __TIMEHANDLER_H__
|