| 66 | } |
| 67 | |
| 68 | void Control::attachChannel(Channel* channel, Channel::ChannelDirection direction, float percentage) |
| 69 | { |
| 70 | mAttachedChannels.push_back(channel); |
| 71 | channel->addControl(this, direction, percentage); |
| 72 | } |
| 73 | |
| 74 | void Control::updateChannels() |
| 75 | { |
no test coverage detected