X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDicomEntry.h;h=3fc1bc1ea81af3946d0b7a4f6b95dfb623816033;hb=5a7f506da1ee16d6e742c4e95f7f1b09826d8980;hp=f7744f29ac8c63d02a631e33e0d2da6ae14d5db1;hpb=12a274bc7f2ed75439e0451bb5e9ff2b612e8aa2;p=gdcm.git diff --git a/src/gdcmDicomEntry.h b/src/gdcmDicomEntry.h index f7744f29..3fc1bc1e 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 07:38:00 $ - Version: $Revision: 1.3 $ + Date: $Date: 2007/05/23 14:18:09 $ + Version: $Revision: 1.12 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -24,24 +24,24 @@ #include "gdcmVRKey.h" #include "gdcmTagKey.h" -namespace gdcm +namespace GDCM_NAME_SPACE { //----------------------------------------------------------------------------- /** * \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 Multplicity) + * - the VM (Value Multiplicity) * - the corresponding name in english */ class GDCM_EXPORT DicomEntry : public RefCounter { -public: - gdcmTypeMacro(DicomEntry) + gdcmTypeMacro(DicomEntry); public: // Print @@ -55,6 +55,10 @@ public: /// @return the Dicom Element Number const uint16_t &GetElement() const { return Tag[1]; } + /// \brief Returns the Dicom Tag Key + /// @return the Dicom Tag Key + const TagKey &GetKey() const { return Tag; } + /// \brief Set the Dicom Value Representation /// \param vr the Dicom Value Representation virtual void SetVR(VRKey const &vr) { VR = vr; } @@ -68,7 +72,8 @@ public: const TagKey &GetKey() const { return Tag; } // Key creation - static TagKey TranslateToKey(uint16_t group, uint16_t elem); + static TagKey TranslateToKey(uint16_t group, uint16_t elem) + { return TagKey(group,elem); } protected: DicomEntry(const uint16_t &group,const uint16_t &elt, @@ -76,13 +81,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