| 34 | } |
| 35 | |
| 36 | void Fork::Attach(BufferedTransformation *newOut) |
| 37 | { |
| 38 | if (outPorts[currentPort]->Attachable()) |
| 39 | outPorts[currentPort]->Attach(newOut); |
| 40 | else |
| 41 | Detach(newOut); |
| 42 | } |
| 43 | |
| 44 | void Fork::Close() |
| 45 | { |
nothing calls this directly
no test coverage detected