X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDictEntry.h;h=5828bfd72c1e1aa1a8788a4288d27df06dbbbe1b;hb=1a11accd11061d63d3c09db7b1445637207e81e4;hp=cd329bd1d969134b2b829e7eda7891c50c309dda;hpb=55d77e0913ff360d639af1841c70d14dc8687584;p=gdcm.git diff --git a/src/gdcmDictEntry.h b/src/gdcmDictEntry.h index cd329bd1..5828bfd7 100644 --- a/src/gdcmDictEntry.h +++ b/src/gdcmDictEntry.h @@ -102,22 +102,31 @@ private: guint16 group; // e.g. 0x0010 /// DicomElement number guint16 element; // e.g. 0x0103 - /// Value Representation i.e. some clue about the nature - /// of the data represented e.g. "FD" short for - /// "Floating Point Double" + /** + * \ingroup gdcmDictEntry + * \brief Value Representation i.e. some clue about the nature + * of the data represented + * e.g. "FD" short for "Floating Point Double" + */ std::string vr; // CLEANME: find the official dicom name for this field ! - - ///Fourth field containing some semantics. - ///(Group Name abbr.) - /// DON'T USER ANY LONGER ! + /** + * \ingroup gdcmDictEntry + * \brief Fourth field containing some semantics + * (Group Name abbr.) + * DON'T USER ANY LONGER ! + */ std::string fourth; - /// e.g. "Patient_Name" + /// e.g. "Patient's Name" std::string name; /// Redundant with (group, element) but we add it /// on efficiency purposes. - TagKey key; + /** + * \ingroup gdcmDictEntry + * \brief Redundant with (group, element) but we add it + * on efficiency purposes. + */ TagKey key; // DCMTK has many fields for handling a DictEntry (see below). What are the // relevant ones for gdcmlib ?