00001 #include "Headers.h"
00002 #include "StreamSegmentBitmap.h"
00003
00004 CStreamSegmentBitmap::CStreamSegmentBitmap(
00005 __uint32 count
00006 )
00007 {
00008 this->count = count;
00009
00010 this->segments = new __uint32[this->count];
00011 assert(this->segments);
00012 }
00013
00014 CStreamSegmentBitmap::~CStreamSegmentBitmap()
00015 {
00016 delete[] this->segments;
00017 }