21 lines
423 B
C++
21 lines
423 B
C++
|
#include "Iterator.h"
|
|||
|
|
|||
|
Television::Television(){}
|
|||
|
|
|||
|
Television::Television(vector<string> iChannelList){
|
|||
|
this->channelList = iChannelList;
|
|||
|
}
|
|||
|
|
|||
|
Iterator* Television::createIterator(){
|
|||
|
RemoteControl *it = new RemoteControl();
|
|||
|
it->setTV(this);
|
|||
|
return (Iterator*)it;
|
|||
|
}
|
|||
|
|
|||
|
int Television::getTotalChannelNum(){
|
|||
|
return channelList.size();
|
|||
|
}
|
|||
|
|
|||
|
void Television::play(int i){
|
|||
|
printf("<EFBFBD><EFBFBD><EFBFBD>ڲ<EFBFBD><EFBFBD>ţ<EFBFBD>%s<><73><EFBFBD><EFBFBD>\n", channelList[i].c_str());
|
|||
|
}
|