| 58 | } |
| 59 | |
| 60 | static PyObject* outputNames(PyStreamingAlgorithm* self) { |
| 61 | vector<string> names = self->algo->outputNames(); |
| 62 | return toPython((void*)&names, VECTOR_STRING); |
| 63 | } |
| 64 | |
| 65 | static PyObject* parameterNames(PyStreamingAlgorithm* self) { |
| 66 | vector<string> names = self->algo->defaultParameters().keys(); |
no test coverage detected