comparison Core/DicomFormat/DicomTag.h @ 291:4d7469f72a0b

embedding of dicom dictionaries
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 14 Dec 2012 15:15:48 +0100
parents fe180eae201d
children c76a35a85c69
comparison
equal deleted inserted replaced
290:b3322636b06d 291:4d7469f72a0b
62 uint16_t GetElement() const 62 uint16_t GetElement() const
63 { 63 {
64 return element_; 64 return element_;
65 } 65 }
66 66
67 const char* GetMainTagsName() const;
68
67 bool operator< (const DicomTag& other) const; 69 bool operator< (const DicomTag& other) const;
68 70
69 bool operator== (const DicomTag& other) const 71 bool operator== (const DicomTag& other) const
70 { 72 {
71 return group_ == other.group_ && element_ == other.element_; 73 return group_ == other.group_ && element_ == other.element_;