X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomEntry.h;h=6f843b5868793acf3cdbab3014b468bab76a3d7e;hb=60ac87ad1e0f2a7875e742b88672f61c40dc02fb;hp=7149fff539dbe43ddff2c97ecf39c7863fcc6bdf;hpb=249df4735f1fab52f49a6e75ff6602ef4ab14ee6;p=gdcm.git diff --git a/src/gdcmDicomEntry.h b/src/gdcmDicomEntry.h index 7149fff5..6f843b58 100644 --- a/src/gdcmDicomEntry.h +++ b/src/gdcmDicomEntry.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomEntry.h,v $ Language: C++ - Date: $Date: 2005/10/21 12:12:55 $ - Version: $Revision: 1.5 $ + Date: $Date: 2005/11/28 15:30:04 $ + Version: $Revision: 1.9 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -29,18 +29,19 @@ namespace gdcm //----------------------------------------------------------------------------- /** * \brief - * the DicomEntry in an element contained by the Dict. + * a DicomEntry is an element contained by the Dict. * It contains : - * - the key referenced by the DICOM norm or the constructor (for private keys) - * i.e. the Group number - * the Element number + * - the key referenced by the DICOM norm or the manufacturer(for private keys) + * i.e. + * - - the Group number + * - - the Element number * - the VR (Value Representation) * - the VM (Value Multiplicity) * - the corresponding name in english */ class GDCM_EXPORT DicomEntry : public RefCounter { - gdcmTypeMacro(DicomEntry) + gdcmTypeMacro(DicomEntry); public: // Print @@ -75,13 +76,13 @@ protected: ~DicomEntry(); private: - /// Dicom \ref TagKey. Contains DicomGroup number and DicomElement number + /// Dicom \ref TagKey. Contains Dicom Group number and Dicom Element number TagKey Tag; /// \brief Value Representation i.e. some clue about the nature /// of the data represented e.g. - /// "FD" short for "Floating Point Double"(see \ref VR) - /// "PN" short for "Person Name" + /// - "FD" short for "Floating Point Double"(see \ref VR) + /// - "PN" short for "Person Name" VRKey VR; }; } // end namespace gdcm