]> Creatis software - gdcm.git/blobdiff - src/gdcmDicomDirImage.cxx
ENH: adding mangle names for 8bits and 12bits
[gdcm.git] / src / gdcmDicomDirImage.cxx
index a8905981bc6e7102c4b1025bfa937399a490a578..aaae71b88209a7d0e11f2e7db9339457f02a4f8a 100644 (file)
@@ -1,5 +1,21 @@
-// gdcmDicomDirImage.cxx
-//-----------------------------------------------------------------------------
+/*=========================================================================
+                                                                                
+  Program:   gdcm
+  Module:    $RCSfile: gdcmDicomDirImage.cxx,v $
+  Language:  C++
+  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.html for details.
+                                                                                
+     This software is distributed WITHOUT ANY WARRANTY; without even
+     the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+     PURPOSE.  See the above copyright notices for more information.
+                                                                                
+=========================================================================*/
+
 #include "gdcmDicomDirImage.h"
 #include "gdcmValEntry.h"
 //-----------------------------------------------------------------------------
 /**
  * \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)
 {
 }
 /**
@@ -39,15 +61,17 @@ gdcmDicomDirImage::~gdcmDicomDirImage()
  */ 
 void gdcmDicomDirImage::Print(std::ostream &os)
 {
-   os<<"IMAGE : ";
+   os << "IMAGE : ";
    for(ListDocEntry::iterator i=docEntries.begin();i!=docEntries.end();++i)
    {
-      if( ((*i)->GetGroup()==0x0004) && ((*i)->GetElement()==0x1500) )
-         os<<((gdcmValEntry *)(*i))->GetValue();
+      if( (*i)->GetGroup() == 0x0004 && (*i)->GetElement() == 0x1500 )
+      {
+         os << ((gdcmValEntry *)(*i))->GetValue(); //FIXME
+      }
    }
-   os<<std::endl;
+   os << std::endl;
 
-   gdcmObject::Print(os);
+   gdcmDicomDirObject::Print(os);
 }
 
 //-----------------------------------------------------------------------------