| 190 | } |
| 191 | |
| 192 | int CtrlrValueMap::getIndexForValue(const int value) const |
| 193 | { |
| 194 | for (int i=0; i<values.size(); i++) |
| 195 | { |
| 196 | if (values[i].numericValue == value) |
| 197 | return (i); |
| 198 | } |
| 199 | return (-1); |
| 200 | } |
| 201 | |
| 202 | void CtrlrValueMap::addAdditionalData (const int index, const String &data) |
| 203 | { |
no test coverage detected