From: jpr Date: Wed, 26 Jan 2005 10:29:16 +0000 (+0000) Subject: Friend hunting + typo X-Git-Tag: Version1.0.bp~187 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=c2d8dd88ea693b22e748546f70e78171835b9b7a;p=gdcm.git Friend hunting + typo --- diff --git a/src/gdcmContentEntry.cxx b/src/gdcmContentEntry.cxx index c09cfb78..84794b41 100644 --- a/src/gdcmContentEntry.cxx +++ b/src/gdcmContentEntry.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmContentEntry.cxx,v $ Language: C++ - Date: $Date: 2005/01/26 09:49:53 $ - Version: $Revision: 1.3 $ + Date: $Date: 2005/01/26 10:29:16 $ + Version: $Revision: 1.4 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -49,7 +49,6 @@ ContentEntry::ContentEntry(DocEntry *e) Copy(e); } - /** * \brief Canonical destructor. */ diff --git a/src/gdcmDicomDir.cxx b/src/gdcmDicomDir.cxx index 80591ac0..77ba8889 100644 --- a/src/gdcmDicomDir.cxx +++ b/src/gdcmDicomDir.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDicomDir.cxx,v $ Language: C++ - Date: $Date: 2005/01/26 09:49:53 $ - Version: $Revision: 1.119 $ + Date: $Date: 2005/01/26 10:29:17 $ + Version: $Revision: 1.120 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -461,15 +461,12 @@ void DicomDir::CreateDicomDirChainedList(std::string const & path) /** * \brief adds *the* Meta to a partially created DICOMDIR - */ - + */ DicomDirMeta *DicomDir::NewMeta() { if( MetaElems ) delete MetaElems; - // friend class hunting : we miss GetLastEntry and GetPreviousEntry - // to be able to remove any direct reference to TagHT DocEntry *entry = GetFirstEntry(); if( entry ) { diff --git a/src/gdcmDocEntryArchive.cxx b/src/gdcmDocEntryArchive.cxx index 6d74f915..2a47352d 100644 --- a/src/gdcmDocEntryArchive.cxx +++ b/src/gdcmDocEntryArchive.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDocEntryArchive.cxx,v $ Language: C++ - Date: $Date: 2005/01/21 11:40:55 $ - Version: $Revision: 1.8 $ + Date: $Date: 2005/01/26 10:29:17 $ + 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 @@ -101,7 +101,7 @@ bool DocEntryArchive::Push(DocEntry *newEntry) /** * \brief Replace in the Header a DocEntry by the new DocEntry. The last - * DocEntry is kept in archieve + * DocEntry is kept in archive * @param group Group number of the Entry * @param elem Element number of the Entry * @return FALSE when an other DocEntry is already archived with the same diff --git a/src/gdcmDocEntrySet.cxx b/src/gdcmDocEntrySet.cxx index 9a44fc31..97bef68a 100644 --- a/src/gdcmDocEntrySet.cxx +++ b/src/gdcmDocEntrySet.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDocEntrySet.cxx,v $ Language: C++ - Date: $Date: 2005/01/26 09:49:54 $ - Version: $Revision: 1.47 $ + Date: $Date: 2005/01/26 10:29:17 $ + Version: $Revision: 1.48 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -539,7 +539,6 @@ DictEntry *DocEntrySet::GetDictEntry(uint16_t group,uint16_t elem) return found; } - /** * \brief Searches [both] the public [and the shadow dictionary (when they * exist)] for the presence of the DictEntry with given diff --git a/src/gdcmElementSet.h b/src/gdcmElementSet.h index 20b56c53..626a85e2 100644 --- a/src/gdcmElementSet.h +++ b/src/gdcmElementSet.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmElementSet.h,v $ Language: C++ - Date: $Date: 2005/01/25 15:44:24 $ - Version: $Revision: 1.38 $ + Date: $Date: 2005/01/26 10:29:17 $ + Version: $Revision: 1.39 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -72,7 +72,6 @@ private: /// Hash Table (map) iterator, used to visit the TagHT variable TagDocEntryHT::iterator ItTagHT; - friend class DicomDir; //For accessing private TagHT friend class DocEntryArchive; //For accessing private TagHT }; } // end namespace gdcm