Main Page   Namespace List   Class Hierarchy   Compound List   File List   Namespace Members   Compound Members   File Members  

Timer.cpp

Go to the documentation of this file.
00001 #include "Timer.h"
00002 
00003 clock_t Timer::begin = 0;
00004 
00005 void Timer::init()
00006 {
00007   begin = clock();
00008 }
00009 
00010 clock_t Timer::getTime()
00011 {
00012   return (clock() - begin)/1000;
00013 }

Generated on Wed May 14 10:03:11 2003 for X3DToolKit by doxygen1.3