45 static PyMethodDef PythonMethodItomAlgorithms[];
46 static PyModuleDef PythonModuleItomAlgorithms;
51 static PyObject* PyGenericAlgorithm(
const QString &algorithmName, PyObject *self, PyObject *args, PyObject *kwds);
53 static PyObject* PyGenericAlgorithm2(
const AddInAlgo::FilterDef *filterDef, PyObject *self, PyObject *args, PyObject *kwds);
80 #define PyAlgorithm_Check(op) PyObject_TypeCheck(op, &ito::PythonAlgorithms::PyAlgorithmType)
86 static PyObject* PyAlgorithm_new(PyTypeObject *type, PyObject *args, PyObject *kwds);
87 static int PyAlgorithm_init(
PyAlgorithm *self, PyObject *args, PyObject *kwds);
88 static PyObject* PyAlgorithm_call(
PyAlgorithm *self, PyObject *args, PyObject *kwds);
89 static PyObject* PyAlgorithm_repr(
PyAlgorithm *self);
97 static PyTypeObject PyAlgorithmType;
98 static PyModuleDef PyAlgorithmModule;