00001 #include "Headers.h"
00002 #include "Channel.h"
00003
00004 CChannel::CChannel(
00005 __uint32 id,
00006 EType type,
00007 CAddress address,
00008 __bitrate bw,
00009 __byte fps
00010 )
00011 {
00012 this->id = id;
00013 this->type = type;
00014 this->address = address;
00015 this->bw = bw;
00016 this->fps = fps;
00017 }