| 323 | } |
| 324 | |
| 325 | CsoundChannelList::CsoundChannelList(CSOUND *csound) |
| 326 | { |
| 327 | lst = (controlChannelInfo_t*) 0; |
| 328 | cnt = csoundListChannels(csound, &lst); |
| 329 | this->csound = csound; |
| 330 | if (cnt < 0 || !lst) |
| 331 | this->ResetVariables(); |
| 332 | } |
| 333 | |
| 334 | CsoundChannelList::CsoundChannelList(Csound *csound) |
| 335 | { |
nothing calls this directly
no test coverage detected