MCPcopy Create free account
hub / github.com/Yaafe/Yaafe / dataflow_link

Function dataflow_link

src_cpp/yaafe-python/yaafecoreDataFlow.cpp:183–189  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

181}
182
183void dataflow_link(void* dataflow, void* source, char* sourceport, void* target, char* targetport)
184{
185 DataFlow* df = static_cast<DataFlow*>(dataflow);
186 DataFlow::Node* sourceNode = static_cast<DataFlow::Node*>(source);
187 DataFlow::Node* targetNode = static_cast<DataFlow::Node*>(target);
188 df->link(sourceNode,sourceport,targetNode,targetport);
189}
190
191void dataflow_append(void* dataflow,void* otherdataflow)
192{

Callers

nothing calls this directly

Calls 1

linkMethod · 0.45

Tested by

no test coverage detected