00001 #include "Headers.h"
00002 #include "EventClientWatch.h"
00003
00004 CEventClientWatch::CEventClientWatch(
00005 CHostClient* host,
00006 CChannel* channel,
00007 __time duration
00008 )
00009 {
00010 assert(host);
00011 assert(channel);
00012 this->host = host;
00013 this->channel = channel;
00014 this->duration = duration;
00015 }
00016
00017 void CEventClientWatch::Process()
00018 {
00019 this->host->EventWatch(this->channel, this->duration);
00020 }