| 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(); |
no test coverage detected