MCPcopy Create free account
hub / github.com/MTG/essentia / inputNames

Method inputNames

src/python/pystreamingalgorithm.cpp:55–58  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

53 static PyObject* push(PyStreamingAlgorithm* self, PyObject* obj);
54
55 static PyObject* inputNames(PyStreamingAlgorithm* self) {
56 vector<string> names = self->algo->inputNames();
57 return toPython((void*)&names, VECTOR_STRING);
58 }
59
60 static PyObject* outputNames(PyStreamingAlgorithm* self) {
61 vector<string> names = self->algo->outputNames();

Callers 1

getInputTypeMethod · 0.45

Calls 1

toPythonFunction · 0.85

Tested by

no test coverage detected