| 24 | |
| 25 | |
| 26 | std::future<CStatus> async_pipeline_2(GPipelinePtr pipeline_2) { |
| 27 | GElementPtr node2A, node2B, node2C = nullptr; |
| 28 | |
| 29 | pipeline_2->registerGElement<MyNode2>(&node2A, {}, "node2A"); |
| 30 | pipeline_2->registerGElement<MyNode2>(&node2B, {node2A}, "node2B"); |
| 31 | pipeline_2->registerGElement<MyNode2>(&node2C, {node2A}, "node2C"); |
| 32 | |
| 33 | return pipeline_2->asyncProcess(3); |
| 34 | } |
| 35 | |
| 36 | |
| 37 | std::future<CStatus> async_pipeline_3(GPipelinePtr pipeline_3) { |
no test coverage detected