X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDocEntry.h;h=ba4dda21f46e29733bfa9c8e64ae01fbeeed224f;hb=f3252c8bfb8ee8d4a7bf5f896a919f601a5fd9f7;hp=6d4c119f1cf9be02263670462bc9d44f9229909f;hpb=71a1927c3f81b6562812a6c9efea781ea7cb40cc;p=gdcm.git diff --git a/src/gdcmDocEntry.h b/src/gdcmDocEntry.h index 6d4c119f..ba4dda21 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/07/06 15:06:35 $ - Version: $Revision: 1.65 $ + Date: $Date: 2007/05/23 14:18:09 $ + Version: $Revision: 1.67 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -25,7 +25,7 @@ #include #include -namespace gdcm +namespace GDCM_NAME_SPACE { class File; class SeqEntry; @@ -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);