| 84 | |
| 85 | |
| 86 | CPluginAlgorithm::CPluginAlgorithm(PyObject* pyclass){ |
| 87 | instance = PyObject_CallObject(pyclass, NULL); |
| 88 | if(instance==NULL) logPythonError(); |
| 89 | } |
| 90 | |
| 91 | CPluginAlgorithm::~CPluginAlgorithm(){ |
| 92 | if(instance!=NULL){ |
nothing calls this directly
no test coverage detected