| 463 | } |
| 464 | |
| 465 | int flowdev_setTimeFunction(int i, int n) |
| 466 | { |
| 467 | try { |
| 468 | ConnectorCabinet::as<FlowDevice>(i)->setTimeFunction( |
| 469 | FuncCabinet::at(n).get()); |
| 470 | return 0; |
| 471 | } catch (...) { |
| 472 | return handleAllExceptions(-1, ERR); |
| 473 | } |
| 474 | } |
| 475 | |
| 476 | ///////////// Walls /////////////////////// |
| 477 |
nothing calls this directly
no test coverage detected