X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDocEntry.h;h=2534f3fabc6270f5f4bee35c8c0558f6812c68c4;hb=209f09716365d35c7cdc5b94684d1d1fb00335c7;hp=235ff54a9563d0c9f94b50d0c0e166f28aca9c60;hpb=224ab29921c6a0d7411d11f8e60a353cb3dd01a4;p=gdcm.git diff --git a/src/gdcmDocEntry.h b/src/gdcmDocEntry.h index 235ff54a..2534f3fa 100644 --- a/src/gdcmDocEntry.h +++ b/src/gdcmDocEntry.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDocEntry.h,v $ Language: C++ - Date: $Date: 2006/05/06 16:05:16 $ - Version: $Revision: 1.63 $ + Date: $Date: 2006/07/06 16:57:06 $ + Version: $Revision: 1.66 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -48,15 +48,15 @@ public: DictEntry * GetDictEntry() { return DicomDict; } /// Returns the Dicom Group number of the current Dicom entry - const uint16_t GetGroup() const { return Key[0]; } + uint16_t const &GetGroup() const { return Key[0]; } //const uint16_t &GetGroup() const { return DicomDict->GetGroup(); } /// Returns the Dicom Element number of the current Dicom entry - const uint16_t GetElement() const { return Key[1];} + uint16_t const &GetElement() const { return Key[1];} //const uint16_t &GetElement() const { return DicomDict->GetElement();} /// Returns the 'key' of the current Dicom entry - TagKey GetKey() const { return Key; } + TagKey const &GetKey() const { return Key; } //TagKey GetKey() const { return DicomDict->GetKey(); } /// \brief Returns the 'Name' '(e.g. "Patient's Name") found in the Dicom @@ -136,9 +136,18 @@ public: /// @return true if the VM is unknown // bool IsVMUnknown() const { return DicomDict->IsVMUnknown(); } bool IsVMUnknown() { return GetVM() == GDCM_UNKNOWN; } - bool IsItemDelimitor(); - bool IsItemStarter(); - bool IsSequenceDelimitor(); + +/// \brief tells us if entry is the last one of a 'no length' SequenceItem +/// (fffe,e00d) + bool IsItemDelimitor() + {return (GetGroup() == 0xfffe && GetElement() == 0xe00d);} +///\brief tells us if entry is the last one of a 'no length' Sequence +/// (fffe,e0dd) + bool IsItemStarter(){ if (GetGroup() != 0xfffe) return false; + return (GetElement() == 0xe000); } + /// \brief tells us if entry is the last one of a 'no length' Sequence + /// (fffe,e0dd) + bool IsSequenceDelimitor() { return (GetGroup() == 0xfffe && GetElement() == 0xe0dd);} virtual void Copy(DocEntry *doc);