Alex Bikfalvi
You are here: Home > Projects > SimStream > Documentation
00001 #pragma once 00002 00003 #include "StreamMessage.h" 00004 #include "Address.h" 00005 00006 class CStreamMessageBootPushResponse : public CStreamMessage 00007 { 00008 private: 00009 __uint32 count; 00010 CAddress hosts[BOOT_MAX_HOSTS]; 00011 00012 public: 00013 CStreamMessageBootPushResponse( 00014 __uint32 stream, 00015 __uint32 count 00016 ); 00017 virtual ~CStreamMessageBootPushResponse(); 00018 00019 inline __uint32 Count() { return this->count; } 00020 inline CAddress& Host(__uint32 index) { assert(index < this->count); return this->hosts[index]; } 00021 00022 virtual CPacket* Copy(); 00023 };
Last updated: February 8, 2011