| 276 | } |
| 277 | |
| 278 | int |
| 279 | Parameter::clean(void) |
| 280 | { |
| 281 | for (int i = 0; i < numObjects; i++) { |
| 282 | theObjects[i] = 0; |
| 283 | } |
| 284 | for (int i = 0; i < numComponents; i++) { |
| 285 | theComponents[i] = 0; |
| 286 | } |
| 287 | |
| 288 | numObjects = 0; |
| 289 | numComponents = 0; |
| 290 | currentValue = 0.0; |
| 291 | |
| 292 | return 0; |
| 293 | } |