| 461 | |
| 462 | |
| 463 | PyObject* PyAlgorithm::getDoc(PyAlgorithm* self) { |
| 464 | const AlgorithmInfo<Algorithm>& inf = AlgorithmFactory::getInfo(self->algo->name()); |
| 465 | string docstr = generateDocString<Algorithm>(*(self->algo), inf.description); |
| 466 | return PyString_FromString(docstr.c_str()); |
| 467 | } |
| 468 | |
| 469 | |
| 470 | PyObject* PyAlgorithm::getStruct(PyAlgorithm* self) { |
no test coverage detected