00001 #include "Headers.h"
00002 #include "EventTimer.h"
00003
00004 CEventTimer::CEventTimer(
00005 CTimerBase* timer,
00006 __time time,
00007 CTimerInfo* info
00008 )
00009 {
00010 assert(timer);
00011 this->timer = timer;
00012 this->time = time;
00013 this->info = info;
00014 }
00015
00016 void CEventTimer::Process()
00017 {
00018 this->timer->Finish(this);
00019 }