| 203 | } |
| 204 | |
| 205 | void dataflow_useComponentLibrary(void* dataflow, char* lib) |
| 206 | { |
| 207 | DataFlow* df = static_cast<DataFlow*>(dataflow); |
| 208 | df->useComponentLibrary(lib); |
| 209 | } |
| 210 | |
| 211 | const char** dataflow_getComponentLibraries(void* dataflow) |
| 212 | { |
nothing calls this directly
no test coverage detected