Mercurial > hg > orthanc-python
annotate Sources/PythonModule.h @ 177:008be55355a4
regenerating the wrapper after patching SDK
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 27 Jun 2024 18:16:26 +0200 |
parents | 6fada29b6759 |
children | 3678a028f1f6 |
rev | line source |
---|---|
0 | 1 /** |
166
6fada29b6759
updated copyright, as Orthanc Team now replaces Osimis
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
155
diff
changeset
|
2 * Python plugin for Orthanc |
6fada29b6759
updated copyright, as Orthanc Team now replaces Osimis
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
155
diff
changeset
|
3 * Copyright (C) 2020-2023 Osimis S.A., Belgium |
6fada29b6759
updated copyright, as Orthanc Team now replaces Osimis
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
155
diff
changeset
|
4 * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium |
155
71d305c29cfa
updated year to 2024
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
114
diff
changeset
|
5 * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium |
0 | 6 * |
7 * This program is free software: you can redistribute it and/or | |
8 * modify it under the terms of the GNU Affero General Public License | |
9 * as published by the Free Software Foundation, either version 3 of | |
10 * the License, or (at your option) any later version. | |
11 * | |
12 * This program is distributed in the hope that it will be useful, but | |
13 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 * Affero General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU Affero General Public License | |
18 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
19 **/ | |
20 | |
21 | |
22 #pragma once | |
23 | |
24 #include "PythonObject.h" | |
25 | |
36
fd58eb5749ed
CMake simplification using DownloadOrthancFramework.cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
26 #include <Compatibility.h> |
fd58eb5749ed
CMake simplification using DownloadOrthancFramework.cmake
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
27 |
0 | 28 #include <memory> |
29 | |
30 class PythonModule : public boost::noncopyable | |
31 { | |
32 private: | |
33 PythonLock& lock_; | |
34 std::string name_; | |
35 std::unique_ptr<PythonObject> module_; | |
36 | |
37 public: | |
38 PythonModule(PythonLock& lock, | |
39 const std::string& utf8Name); | |
40 | |
41 const std::string& GetName() const | |
42 { | |
43 return name_; | |
44 } | |
45 | |
46 bool IsValid() const; | |
47 | |
48 PythonObject& GetObject() const; | |
49 | |
50 PyObject* GetPyObject() const; | |
51 }; |