Mercurial > hg > orthanc
annotate OrthancFramework/Sources/DicomFormat/DicomElement.cpp @ 5853:4d932683049d get-scu tip
very first implementation of C-Get SCU
author | Alain Mazy <am@orthanc.team> |
---|---|
date | Tue, 29 Oct 2024 17:25:49 +0100 |
parents | f7adfb22e20e |
children |
rev | line source |
---|---|
4297 | 1 /** |
2 * Orthanc - A Lightweight, RESTful DICOM Store | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
5640
f7adfb22e20e
updated copyright, as Orthanc Team now replaces Osimis
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5485
diff
changeset
|
5 * Copyright (C) 2017-2023 Osimis S.A., Belgium |
f7adfb22e20e
updated copyright, as Orthanc Team now replaces Osimis
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5485
diff
changeset
|
6 * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium |
5485
48b8dae6dc77
upgrade to year 2024
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
7 * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium |
4297 | 8 * |
9 * This program is free software: you can redistribute it and/or | |
10 * modify it under the terms of the GNU Lesser General Public License | |
11 * as published by the Free Software Foundation, either version 3 of | |
12 * the License, or (at your option) any later version. | |
13 * | |
14 * This program is distributed in the hope that it will be useful, but | |
15 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
17 * Lesser General Public License for more details. | |
18 * | |
19 * You should have received a copy of the GNU Lesser General Public | |
20 * License along with this program. If not, see | |
21 * <http://www.gnu.org/licenses/>. | |
22 **/ | |
23 | |
24 | |
25 #include "../PrecompiledHeaders.h" | |
26 #include "DicomElement.h" | |
27 | |
28 | |
29 namespace Orthanc | |
30 { | |
31 DicomElement::DicomElement(uint16_t group, | |
32 uint16_t element, | |
33 const DicomValue &value) : | |
34 tag_(group, element), | |
35 value_(value.Clone()) | |
36 { | |
37 } | |
38 | |
39 DicomElement::DicomElement(const DicomTag &tag, | |
40 const DicomValue &value) : | |
41 tag_(tag), | |
42 value_(value.Clone()) | |
43 { | |
44 } | |
45 | |
46 DicomElement::~DicomElement() | |
47 { | |
48 delete value_; | |
49 } | |
50 | |
51 const DicomTag &DicomElement::GetTag() const | |
52 { | |
53 return tag_; | |
54 } | |
55 | |
56 const DicomValue &DicomElement::GetValue() const | |
57 { | |
58 return *value_; | |
59 } | |
60 | |
61 uint16_t DicomElement::GetTagGroup() const | |
62 { | |
63 return tag_.GetGroup(); | |
64 } | |
65 | |
66 uint16_t DicomElement::GetTagElement() const | |
67 { | |
68 return tag_.GetElement(); | |
69 } | |
70 | |
71 bool DicomElement::operator<(const DicomElement &other) const | |
72 { | |
73 return GetTag() < other.GetTag(); | |
74 } | |
75 } |