Alex Bikfalvi
You are here: Home > Projects > SimStream > Documentation
00001 #pragma once 00002 00003 #include "SimEvent.h" 00004 #include "HostClient.h" 00005 #include "Channel.h" 00006 00007 class CEventClientWatch : public CSimEvent 00008 { 00009 private: 00010 CHostClient* host; 00011 CChannel* channel; 00012 __time duration; 00013 00014 public: 00015 CEventClientWatch( 00016 CHostClient* host, 00017 CChannel* channel, 00018 __time duration 00019 ); 00020 virtual ~CEventClientWatch() { } 00021 00022 virtual void Process(); 00023 virtual void Clean() { } 00024 };
Last updated: February 8, 2011