| 102 | } |
| 103 | |
| 104 | void Channel::addControl(Control* control, Channel::ChannelDirection dir, float percentage) |
| 105 | { |
| 106 | ControlChannelBinderItem ccBinderItem; |
| 107 | ccBinderItem.control = control; |
| 108 | ccBinderItem.direction = dir; |
| 109 | ccBinderItem.percentage = percentage; |
| 110 | |
| 111 | mAttachedControls.push_back(ccBinderItem); |
| 112 | } |
| 113 | |
| 114 | Channel::ControlChannelBinderItem Channel::getAttachedControlBinding(Control* control) |
| 115 | { |
no outgoing calls
no test coverage detected