Mercurial > hg > orthanc-python
annotate Sources/PythonBytes.h @ 202:ba4dd45ab937
fix mingw build
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 03 Jul 2024 09:48:42 +0200 |
parents | 6fada29b6759 |
children | 3678a028f1f6 |
rev | line source |
---|---|
122 | 1 /** |
2 * Python plugin for Orthanc | |
166
6fada29b6759
updated copyright, as Orthanc Team now replaces Osimis
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
122
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:
122
diff
changeset
|
4 * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium |
6fada29b6759
updated copyright, as Orthanc Team now replaces Osimis
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
122
diff
changeset
|
5 * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium |
122 | 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 | |
26 #include <Compatibility.h> // For std::unique_ptr | |
27 | |
28 // A Python string is always valid, or an exception was thrown on its creation | |
29 class PythonBytes : public boost::noncopyable | |
30 { | |
31 private: | |
32 std::unique_ptr<PythonObject> bytes_; | |
33 | |
34 void SanityCheck(); | |
35 | |
36 public: | |
37 PythonBytes(PythonLock& lock, | |
38 const void* data, | |
39 size_t size); | |
40 | |
41 PyObject* GetPyObject() const | |
42 { | |
43 return bytes_->GetPyObject(); | |
44 } | |
45 | |
46 PyObject* Release() | |
47 { | |
48 return bytes_->Release(); | |
49 } | |
50 }; |