| 63 | } |
| 64 | |
| 65 | static PyObject* parameterNames(PyStreamingAlgorithm* self) { |
| 66 | vector<string> names = self->algo->defaultParameters().keys(); |
| 67 | return toPython((void*)&names, VECTOR_STRING); |
| 68 | } |
| 69 | |
| 70 | static PyObject* getInputType(PyStreamingAlgorithm* self, PyObject* obj); |
| 71 | static PyObject* getOutputType(PyStreamingAlgorithm* self, PyObject* obj); |