Mercurial > hg > orthanc-python
annotate CodeAnalysis/GlobalFunctions.mustache @ 105:912cbabbe427
revert to sdk 1.8.1
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 23 Feb 2022 11:15:47 +0100 |
parents | eb6ac5a801d1 |
children | 65ec5597ec70 |
rev | line source |
---|---|
0 | 1 /** |
2 * Python plugin for Orthanc | |
101 | 3 * Copyright (C) 2020-2022 Osimis S.A., Belgium |
4 * Copyright (C) 2021-2022 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 } |