Mercurial > hg > orthanc-python
annotate CodeAnalysis/sdk.cpp.mustache @ 118:7f8f26ef5006
fix memory leaks
author | Alain Mazy <am@osimis.io> |
---|---|
date | Mon, 28 Aug 2023 16:44:41 +0200 |
parents | 65ec5597ec70 |
children | c55b0583084b |
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 #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 | |
37 void RegisterOrthancSdk(PyObject* module) | |
38 { | |
39 {{#enumerations}} | |
40 Register{{name}}Enumeration(module); | |
41 {{/enumerations}} | |
42 | |
43 {{#classes}} | |
44 Register{{class_name}}Class(module); | |
45 {{/classes}} | |
46 } |