| 468 | |
| 469 | |
| 470 | PyObject* PyAlgorithm::getStruct(PyAlgorithm* self) { |
| 471 | const AlgorithmInfo<Algorithm>& inf = AlgorithmFactory::getInfo(self->algo->name()); |
| 472 | return generateDocStruct<Algorithm>(*(self->algo), inf.description); |
| 473 | } |
| 474 | |
| 475 | static PyMethodDef PyAlgorithm_methods[] = { |
| 476 | { "name", (PyCFunction)PyAlgorithm::name, METH_NOARGS, |
no test coverage detected