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

Function dataflow_createNode

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

Source from the content-addressed store, hash-verified

85}
86
87void* dataflow_createNode(void* dataflow, char* componentId, char** parameters)
88{
89 DataFlow* df = static_cast<DataFlow*>(dataflow);
90 ParameterMap map;
91 char** ptr = parameters;
92 while (*ptr!=NULL) {
93 map[ptr[0]] = ptr[1];
94 ptr += 2;
95 }
96 return df->createNode(NodeDesc(componentId,map));
97}
98
99void dataflow_setNodeName(void* dataflow, void* node, char* name)
100{

Callers

nothing calls this directly

Calls 2

NodeDescClass · 0.85
createNodeMethod · 0.45

Tested by

no test coverage detected