Alex Bikfalvi
SimStream Documentation
StreamFrame.cpp
00001 #include "Headers.h" 00002 #include "StreamFrame.h" 00003 00004 CStreamFrame::CStreamFrame( 00005 __uint32 stream, 00006 EFrameType type, 00007 __uint32 index, 00008 char anchorP, 00009 char anchorB, 00010 __uint32 size, 00011 __uint32 segment, 00012 __byte segmentIndex, 00013 __byte segmentSize 00014 ) 00015 { 00016 this->valid = true; 00017 this->stream = stream; 00018 this->type = type; 00019 this->index = index; 00020 this->anchorP = anchorP; 00021 this->anchorB = anchorB; 00022 this->size = size; 00023 this->segment = segment; 00024 this->segmentIndex = segmentIndex; 00025 this->segmentSize = segmentSize; 00026 }
Last updated: February 8, 2011