Mercurial > hg > orthanc-python
annotate CodeAnalysis/sdk.cpp.mustache @ 129:5643e97d9367 fix-leak
reproducible code generation
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 30 Aug 2023 11:40:22 +0200 |
parents | eb6ac5a801d1 |
children | c55b0583084b |
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 #include "sdk.h" | |
22 | |
28
b2bbb516056e
The "Calling Python..." info logs are disabled if "PythonVerbose" is "false"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
23 #include "../PythonLock.h" |
b2bbb516056e
The "Calling Python..." info logs are disabled if "PythonVerbose" is "false"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
24 |
36
fd58eb5749ed
CMake simplification using DownloadOrthancFramework.cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
28
diff
changeset
|
25 #include "../../Resources/Orthanc/Plugins/OrthancPluginCppWrapper.h" |
0 | 26 |
27 {{#enumerations}} | |
28 #include "./sdk_{{name}}.impl.h" | |
29 {{/enumerations}} | |
30 | |
31 {{#classes}} | |
32 #include "./sdk_{{class_name}}.impl.h" | |
33 {{/classes}} | |
34 | |
35 #include "./sdk_GlobalFunctions.impl.h" | |
36 | |
129
5643e97d9367
reproducible code generation
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
101
diff
changeset
|
37 {{#classes}} |
5643e97d9367
reproducible code generation
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
101
diff
changeset
|
38 #include "./sdk_{{class_name}}.methods.h" |
5643e97d9367
reproducible code generation
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
101
diff
changeset
|
39 {{/classes}} |
5643e97d9367
reproducible code generation
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
101
diff
changeset
|
40 |
0 | 41 void RegisterOrthancSdk(PyObject* module) |
42 { | |
43 {{#enumerations}} | |
44 Register{{name}}Enumeration(module); | |
45 {{/enumerations}} | |
46 | |
47 {{#classes}} | |
48 Register{{class_name}}Class(module); | |
49 {{/classes}} | |
50 } |