]> Creatis software - gdcm.git/blobdiff - src/gdcmHeaderHelper.cxx
ENH: Adding BITS_TYPE_JPEG_MANGLE_NAME var that at config time will either bit gdcm_m...
[gdcm.git] / src / gdcmHeaderHelper.cxx
index 164254ef0f4c194a50efab943e7e39b90af25c4d..cbb0a4719cde95b891b405e9229db48b0e68ce4a 100644 (file)
@@ -3,12 +3,12 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmHeaderHelper.cxx,v $
   Language:  C++
-  Date:      $Date: 2004/06/25 20:48:25 $
-  Version:   $Revision: 1.40 $
+  Date:      $Date: 2004/09/27 08:39:07 $
+  Version:   $Revision: 1.42 $
                                                                                 
   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
@@ -55,7 +55,7 @@ gdcmSerieHeader::~gdcmSerieHeader()
 void gdcmSerieHeader::AddFileName(std::string const & filename)
 {
    gdcmHeader *header = new gdcmHeader( filename );
-   this->CoherentGdcmFileList.push_back( header );
+   CoherentGdcmFileList.push_back( header );
 }
 
 /**
@@ -64,7 +64,7 @@ void gdcmSerieHeader::AddFileName(std::string const & filename)
  */
 void gdcmSerieHeader::AddGdcmFile(gdcmHeader *file)
 {
-   this->CoherentGdcmFileList.push_back( file );
+   CoherentGdcmFileList.push_back( file );
 }
 
 /**
@@ -80,7 +80,7 @@ void gdcmSerieHeader::SetDirectory(std::string const & dir)
    {
       //use string and not const char*:
       gdcmHeader *header = new gdcmHeader( *it ); 
-      this->CoherentGdcmFileList.push_back( header );
+      CoherentGdcmFileList.push_back( header );
    }
 }