]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirImage.cxx
ENH: Apply remaining patch for the CMakeLists, and sublevel (8 & 12) ones
[gdcm.git] / src / gdcmDicomDirImage.cxx
index 7d2c5668f48872f372df53459ee803d8c0d92afa..aaae71b88209a7d0e11f2e7db9339457f02a4f8a 100644 (file)
@@ -3,12 +3,12 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDicomDirImage.cxx,v $
   Language:  C++
-  Date:      $Date: 2004/08/01 02:39:09 $
-  Version:   $Revision: 1.8 $
+  Date:      $Date: 2004/09/27 08:39:06 $
+  Version:   $Revision: 1.11 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
-  http://www.creatis.insa-lyon.fr/Public/Gdcm/License.htm for details.
+  http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
                                                                                 
      This software is distributed WITHOUT ANY WARRANTY; without even
      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
 /**
  * \ingroup gdcmDicomDirImage
  * \brief  Constructor 
- * @param  s  SQ Item holdoing the elements
- * @param ptagHT pointer to the HTable (gdcmObject needs it 
+ * @param  s  SQ Item holding the elements
+ * @param ptagHT pointer to the HTable (gdcmDicomDirObject needs it 
  *               to build the gdcmDocEntries)
  */
 gdcmDicomDirImage::gdcmDicomDirImage(gdcmSQItem *s, TagDocEntryHT *ptagHT):
-   gdcmObject(ptagHT)
+   gdcmDicomDirObject(ptagHT)
 {
    docEntries = s->GetDocEntries();
 }
 
+/**
+ * \ingroup gdcmDicomDirImage
+ * \brief  Constructor 
+ * @param ptagHT pointer to the HTable (gdcmDicomDirObject needs it 
+ *               to build the gdcmDocEntries)
+ */
 gdcmDicomDirImage::gdcmDicomDirImage(TagDocEntryHT *ptagHT):
-   gdcmObject(ptagHT)
+   gdcmDicomDirObject(ptagHT)
 {
 }
 /**
@@ -65,7 +71,7 @@ void gdcmDicomDirImage::Print(std::ostream &os)
    }
    os << std::endl;
 
-   gdcmObject::Print(os);
+   gdcmDicomDirObject::Print(os);
 }
 
 //-----------------------------------------------------------------------------