To find the execution time of my code as given below, I have written a Timer class.
Timer::StartTimer();
DoOperation();
cout<<"Time elapsed: "<<Timer::GetTime();
I get error that startTime and endTime are undefined. I couldn't quite get the problem. Can you please help.
File:Timer.h
#include <sys/time.h>
class Timer
{
static timeval startTime, endTime;
public:
static void StartTimer();
static long int GetTime();
};
File: Timer.cc
#include "Timer.h"
void Timer::StartTimer()
{
gettimeofday(&startTime, NULL);
}
long int Timer::GetTime()
{
long int seconds, useconds, mtime;
gettimeofday(&endTime, NULL);
seconds = endTime.tv_sec - startTime.tv_sec;
useconds = endTime.tv_usec - startTime.tv_usec;
mtime = ((seconds) * 1000 + useconds/1000.0) + 0.5;
return(mtime);
}
static? – Nemo Jan 28 '11 at 11:56staticmembers? Unless you've some weird needs I think it would be better to have normal members instead of static ones... – peoro Jan 28 '11 at 11:59