comparison Plugins/Samples/Common/DicomTag.h @ 3580:46a8050583a1

OrthancPlugins::DicomPath::Format()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 20 Nov 2019 17:59:53 +0100
parents 4e43e67f8ecf
children 94f4a18a79cc
comparison
equal deleted inserted replaced
3579:74fc2a3b43bb 3580:46a8050583a1
32 32
33 33
34 #pragma once 34 #pragma once
35 35
36 #include <stdint.h> 36 #include <stdint.h>
37 #include <string>
37 38
38 namespace OrthancPlugins 39 namespace OrthancPlugins
39 { 40 {
40 class DicomTag 41 class DicomTag
41 { 42 {
72 73
73 bool operator!= (const DicomTag& other) const 74 bool operator!= (const DicomTag& other) const
74 { 75 {
75 return !(*this == other); 76 return !(*this == other);
76 } 77 }
78
79 std::string FormatHexadecimal() const;
77 }; 80 };
78 81
79 82
80 static const DicomTag DICOM_TAG_BITS_STORED(0x0028, 0x0101); 83 static const DicomTag DICOM_TAG_BITS_STORED(0x0028, 0x0101);
81 static const DicomTag DICOM_TAG_COLUMNS(0x0028, 0x0011); 84 static const DicomTag DICOM_TAG_COLUMNS(0x0028, 0x0011);