X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmSerieHelper.cxx;h=dba1e90c55b09365afc50ea0656872aa16c6411e;hb=8715f3d6b69ba43c991687849781fefb884a7bc1;hp=77849c9fe1ae1c605713f8a6d7f7a894f060606a;hpb=713a45d76c97b5b97a7ea5a68ea1fcf56321e4f0;p=gdcm.git diff --git a/src/gdcmSerieHelper.cxx b/src/gdcmSerieHelper.cxx index 77849c9f..dba1e90c 100644 --- a/src/gdcmSerieHelper.cxx +++ b/src/gdcmSerieHelper.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmSerieHelper.cxx,v $ Language: C++ - Date: $Date: 2005/02/02 15:12:09 $ - Version: $Revision: 1.1 $ + Date: $Date: 2005/02/02 16:16:07 $ + Version: $Revision: 1.2 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -27,8 +27,6 @@ namespace gdcm { -typedef std::list GdcmFileList; -typedef std::vector GdcmFileVector; //----------------------------------------------------------------------------- // Constructor / Destructor @@ -155,9 +153,7 @@ void SerieHelper::OrderGdcmFileList(GdcmFileList *CoherentGdcmFileList) * \brief Get the first List while visiting the CoherentFileListHT * @return The first GdcmFileList if found, otherwhise NULL */ - std::list *SerieHelper::GetFirstCoherentFileList() -// Why doesn't it compile ?!? -//GdcmFileList *SerieHelper::GetFirstCoherentFileList() +GdcmFileList *SerieHelper::GetFirstCoherentFileList() { ItListHt = CoherentGdcmFileListHT.begin(); if( ItListHt != CoherentGdcmFileListHT.end() ) @@ -170,7 +166,7 @@ void SerieHelper::OrderGdcmFileList(GdcmFileList *CoherentGdcmFileList) * \note : meaningfull only if GetFirstCoherentFileList already called * @return The next GdcmFileList if found, otherwhise NULL */ -std::list *SerieHelper::GetNextCoherentFileList() +GdcmFileList *SerieHelper::GetNextCoherentFileList() { gdcmAssertMacro (ItListHt != CoherentGdcmFileListHT.end());