| 176 | } |
| 177 | |
| 178 | int |
| 179 | Parameter::update(int newValue) |
| 180 | { |
| 181 | theInfo.theInt = newValue; |
| 182 | |
| 183 | int ok = 0; |
| 184 | |
| 185 | for (int i = 0; i < numObjects; i++) |
| 186 | ok += theObjects[i]->updateParameter(parameterID[i], theInfo); |
| 187 | |
| 188 | return ok; |
| 189 | } |
| 190 | |
| 191 | int |
| 192 | Parameter::update(double newValue) |
nothing calls this directly
no test coverage detected