X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmHeaderHelper.cxx;h=cbb0a4719cde95b891b405e9229db48b0e68ce4a;hb=99e2869ac9fb23254793897526d33d8c51e3f55d;hp=164254ef0f4c194a50efab943e7e39b90af25c4d;hpb=967978854b861e9b06fbd89b93e77d9ed984cce2;p=gdcm.git diff --git a/src/gdcmHeaderHelper.cxx b/src/gdcmHeaderHelper.cxx index 164254ef..cbb0a471 100644 --- a/src/gdcmHeaderHelper.cxx +++ b/src/gdcmHeaderHelper.cxx @@ -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 ); } }