1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
#ifndef STOPWATCH_H
#define STOPWATCH_H
#include <sys/time.h>
#include <iosfwd>
//----------------------------------------------------------------------------
class StopWatch
{
public:
StopWatch(const char *name);
~StopWatch();
void start();
void stop();
void reset();
int compare(const StopWatch &other) const;
friend std::ostream &operator<<(std::ostream &os, const StopWatch &s);
protected:
const char *m_name;
unsigned m_count;
struct timeval m_start;
struct timeval m_stop;
struct timeval m_total;
};
#endif //STOPWATCH_H
|