X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=src%2FgdcmDocEntryArchive.h;h=bc67747688c1a090952ca3a0eb9e69901f31fdac;hb=32d0aec747e450189a2b1f4f8552cf5d0b3deca9;hp=ae6550ab857201edf9a7366e3bcab17b017ff63e;hpb=c42ce41966ee7a572752d7f45ddff25b90515119;p=gdcm.git diff --git a/src/gdcmDocEntryArchive.h b/src/gdcmDocEntryArchive.h index ae6550ab..bc677476 100644 --- a/src/gdcmDocEntryArchive.h +++ b/src/gdcmDocEntryArchive.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDocEntryArchive.h,v $ Language: C++ - Date: $Date: 2004/11/24 10:23:47 $ - Version: $Revision: 1.2 $ + Date: $Date: 2005/01/20 11:39:49 $ + Version: $Revision: 1.5 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -19,21 +19,19 @@ #ifndef GDCMDOCENTRYARCHIVE_H #define GDCMDOCENTRYARCHIVE_H -#include "gdcmCommon.h" #include "gdcmHeader.h" namespace gdcm { //----------------------------------------------------------------------------- -/* - * /brief Container - * +/** + * \brief Container * It's goal is to change the Header correctly. At this time, the change is * only made for the first level of the Document. In the future, it might - * consider sequences. + * consider Dicom Sequences (SeqEntry, within any SQItem). * The change is made by replacing a DocEntry by an other that is created - * outside the class. The old value is kept. When we restore the header + * outside the class. The old value is kept. When we restore the Header * status, the added DocEntry is deleted and replaced by the old value. */ class GDCM_EXPORT DocEntryArchive @@ -45,8 +43,8 @@ public: void Print(std::ostream &os = std::cout); bool Push(DocEntry *newEntry); - bool Push(uint16_t group,uint16_t element); - bool Restore(uint16_t group,uint16_t element); + bool Push(uint16_t group,uint16_t elem); + bool Restore(uint16_t group,uint16_t elem); void ClearArchive(void);