| 45 | static void tp_dealloc(PyObject* self); |
| 46 | |
| 47 | static PyObject* name (PyStreamingAlgorithm* self) { |
| 48 | return toPython((void*)&self->algo->name(), STRING); |
| 49 | } |
| 50 | static PyObject* configure (PyStreamingAlgorithm* self, PyObject* args, PyObject* keywds); |
| 51 | static PyObject* hasSink(PyStreamingAlgorithm* self, PyObject* args); |
| 52 | static PyObject* hasSource(PyStreamingAlgorithm* self, PyObject* args); |
no test coverage detected