X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDictEntry.h;h=93cf8efc7c867cdab6ed138c8b8c02e5770b60dd;hb=595f90023c498f01bba240043841088ba5d45872;hp=ecbc0290a47a555fca5af5a7714edf8047c9c2e7;hpb=565a47ec4e037897aaf770aeccc5d67d7ad7b478;p=gdcm.git diff --git a/src/gdcmDictEntry.h b/src/gdcmDictEntry.h index ecbc0290..93cf8efc 100644 --- a/src/gdcmDictEntry.h +++ b/src/gdcmDictEntry.h @@ -7,13 +7,13 @@ class GDCM_EXPORT gdcmDictEntry { private: - guint16 group; // e.g. 0x0010 - guint16 element; // e.g. 0x0103 + guint16 group; // e.g. 0x0010 // FIXME : s'en sert-on qq part + guint16 element; // e.g. 0x0103 // si ce n'est pour fabriquer la TagKey ? string vr; // Value Representation i.e. some clue about the nature // of the data represented e.g. "FD" short for // "Floating Point Double" // CLEANME: find the official dicom name for this field ! - string fourth; // Fourth field containing some semantics. + string fourth; // Fourth field containing some semantics. (Group Name abbr.) string name; // e.g. "Patient_Name" TagKey key; // Redundant with (group, element) but we add it // on efficiency purposes. @@ -36,6 +36,7 @@ public: string vr = "Unknown", string fourth = "Unknown", string name = "Unknown"); + // fabrique une 'clé' par concaténation du numGroupe et du numElement static TagKey TranslateToKey(guint16 group, guint16 element);