]> Creatis software - gdcm.git/commitdiff
Friend hunting + typo
authorjpr <jpr>
Wed, 26 Jan 2005 10:29:16 +0000 (10:29 +0000)
committerjpr <jpr>
Wed, 26 Jan 2005 10:29:16 +0000 (10:29 +0000)
src/gdcmContentEntry.cxx
src/gdcmDicomDir.cxx
src/gdcmDocEntryArchive.cxx
src/gdcmDocEntrySet.cxx
src/gdcmElementSet.h

index c09cfb787b8fd286d20d138a04965e0a01746247..84794b41d6988a311452bcea9e3e04e496d161fb 100644 (file)
@@ -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.
  */
index 80591ac05bf9a4e85735d0aa589d3ee645ccb890..77ba8889623d6ff5ba6e1e7d8dcf4b2340af7aca 100644 (file)
@@ -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 )
    { 
index 6d74f9155cec0625ac0ad526b7f58447c107001d..2a47352d56e37b2b7b5fad03abdaab16dc7906f9 100644 (file)
@@ -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
index 9a44fc31942338bdafbe6a76873aac49f9c8fb51..97bef68a0fb8704673a8e4c87061fa1bcecc320b 100644 (file)
@@ -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
index 20b56c53578290a9f5543c1aa791d4ba1cdd7557..626a85e2c7fae1a27a0f04b43ef40df976f245cc 100644 (file)
@@ -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