00001 #include "Headers.h"
00002 #include "EventClientArrive.h"
00003
00004 CEventClientArrive::CEventClientArrive(CHostClient *host)
00005 {
00006 assert(host);
00007 this->host = host;
00008 }
00009
00010 void CEventClientArrive::Process()
00011 {
00012 this->host->EventArrive();
00013 }