Mercurial > hg > orthanc-python
annotate CodeAnalysis/GlobalFunctions.mustache @ 114:65ec5597ec70
upgrade to year 2023
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 28 Mar 2023 17:35:14 +0200 |
parents | eb6ac5a801d1 |
children | 71d305c29cfa |
rev | line source |
---|---|
0 | 1 /** |
2 * Python plugin for Orthanc | |
114
65ec5597ec70
upgrade to year 2023
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
101
diff
changeset
|
3 * Copyright (C) 2020-2023 Osimis S.A., Belgium |
65ec5597ec70
upgrade to year 2023
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
101
diff
changeset
|
4 * Copyright (C) 2021-2023 Sebastien Jodogne, ICTEAM UCLouvain, Belgium |
0 | 5 * |
6 * This program is free software: you can redistribute it and/or | |
7 * modify it under the terms of the GNU Affero General Public License | |
8 * as published by the Free Software Foundation, either version 3 of | |
9 * the License, or (at your option) any later version. | |
10 * | |
11 * This program is distributed in the hope that it will be useful, but | |
12 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
14 * Affero General Public License for more details. | |
15 * | |
16 * You should have received a copy of the GNU Affero General Public License | |
17 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
18 **/ | |
19 | |
20 | |
21 {{#global_functions}} | |
22 static PyObject* sdk_{{c_function}}(PyObject* module, PyObject* args) | |
23 { | |
28
b2bbb516056e
The "Calling Python..." info logs are disabled if "PythonVerbose" is "false"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
24 PythonLock::LogCall("Calling Python global function: {{c_function}}()"); |
0 | 25 |
26 {{> function_body}} | |
27 } | |
28 | |
29 {{/global_functions}} | |
30 | |
31 static PyMethodDef ORTHANC_SDK_FUNCTIONS[] = | |
32 { | |
33 {{#global_functions}} | |
34 { "{{short_name}}", sdk_{{c_function}}, METH_VARARGS, | |
35 "Generated from C function {{c_function}}()" }, | |
36 {{/global_functions}} | |
37 { NULL, NULL } | |
38 }; | |
39 | |
40 | |
41 PyMethodDef* GetOrthancSdkFunctions() | |
42 { | |
43 return ORTHANC_SDK_FUNCTIONS; | |
44 } |