| 57 | } |
| 58 | |
| 59 | static PyObject* inputNames(PyAlgorithm* self) { |
| 60 | vector<string> names = self->algo->inputNames(); |
| 61 | return VectorString::toPythonCopy(&names); |
| 62 | } |
| 63 | |
| 64 | static PyObject* outputNames(PyAlgorithm* self) { |
| 65 | vector<string> names = self->algo->outputNames(); |
no outgoing calls
no test coverage detected