1 // Channel.cpp 2 3 #include "Channel.h" 4 5 // constructor 6 Channel::Channel() 7 { 8 } 9 10 // destructor 11 Channel::~Channel() 12 { 13 } 14 15