VCRA-SZCZERBACKI-PointBasedRendering/stopwatch.h

00001 #ifndef __STOPWATCH_H
00002 #define __STOPWATCH_H
00003 
00004 #include <ctime> 
00005 
00006 class Stopwatch {
00007 protected:
00008     clock_t startTime;
00009 
00010 public:
00014   Stopwatch() {};
00015 
00019   ~Stopwatch() {};
00020 
00024     void start();
00025 
00030     double stop();
00031 };
00032 
00033 
00034 #endif

Generated on Thu Feb 15 09:09:20 2007 for Surface Splating by  doxygen 1.5.1-p1