00001 #include "Headers.h"
00002 #include "EventFlowStop.h"
00003
00004 CEventFlowStop::CEventFlowStop(CHostFlow *host, __uint8 sender)
00005 {
00006 assert(host);
00007 this->host = host;
00008 this->sender = sender;
00009 }
00010
00011 void CEventFlowStop::Process()
00012 {
00013 this->host->StopFlow(this->sender);
00014 }