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

Function getComponentList

src_cpp/yaafe-python/yaafecore.cpp:70–77  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

68}
69
70char** getComponentList() {
71 const vector<const Component*>& pList = ComponentFactory::instance()->getPrototypeList();
72 vector<string> res;
73 for (vector<const Component*>::const_iterator it=pList.begin();
74 it!=pList.end(); it++)
75 res.push_back((*it)->getIdentifier());
76 return makeStrList(res);
77}
78
79char** getOutputFormatList() {
80 vector<string> oList = OutputFormat::availableFormats();

Callers

nothing calls this directly

Calls 2

makeStrListFunction · 0.85
getIdentifierMethod · 0.45

Tested by

no test coverage detected