Mercurial > hg > orthanc-python
view CodeAnalysis/ClassMethods.mustache @ 234:d83009f8cd91 OrthancPython-4.2
closing OrthancPython-4.2
| author | Sebastien Jodogne <s.jodogne@gmail.com> |
|---|---|
| date | Fri, 17 Jan 2025 15:26:55 +0100 |
| parents | f79f5450ad7f |
| children | 55473de7694f |
line wrap: on
line source
// Actual implementation of the methods {{#methods}} static PyObject *sdk_{{class_name}}_{{c_function}}( sdk_{{class_name}}_Object* self, PyObject *args) { PythonLock::LogCall("Calling method {{c_function}}() on object of class {{class_name}}"); if (self->object_ == NULL) { PyErr_SetString(PyExc_ValueError, "Invalid object"); return NULL; } {{> function_body}} } {{/methods}}
