16 lines
200 B
C++
16 lines
200 B
C++
#ifndef COUNTER_H
|
|
#define COUNTER_H
|
|
#include <sys/time.h>
|
|
|
|
class Counter
|
|
{
|
|
public:
|
|
Counter();
|
|
void start();
|
|
|
|
long getTime();
|
|
struct timeval startTime, endTime;
|
|
};
|
|
|
|
#endif // COUNTER_H
|