X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Testing%2FTestSerieHelper.cxx;h=02f06f8e9e8e789bc11e6e939f95e0992f4c00a6;hb=c1f032f1d6c5d69ade7a6a05813d62de44f0dafc;hp=e8b6a31325d443c851366ffd7299560e6adf9744;hpb=0628dcb30529c5cab0ed002fc10bfc0cdc3a5a47;p=gdcm.git diff --git a/Testing/TestSerieHelper.cxx b/Testing/TestSerieHelper.cxx index e8b6a313..02f06f8e 100644 --- a/Testing/TestSerieHelper.cxx +++ b/Testing/TestSerieHelper.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: TestSerieHelper.cxx,v $ Language: C++ - Date: $Date: 2005/02/05 01:25:45 $ - Version: $Revision: 1.3 $ + Date: $Date: 2005/05/26 18:50:45 $ + Version: $Revision: 1.4 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -48,14 +48,14 @@ int TestSerieHelper(int argc, char *argv[]) int nbFiles; // For all the Coherent Files lists of the gdcm::Serie - gdcm::GdcmFileList *l = s->GetFirstCoherentFileList(); + gdcm::FileList *l = s->GetFirstCoherentFileList(); while (l) { nbFiles = l->size() ; if ( l->size() > 3 ) // Why not ? Just an example, for testing { std::cout << "Sort list : " << nbFiles << " long" << std::endl; - s->OrderGdcmFileList(l); // sort the list + s->OrderFileList(l); // sort the list } l = s->GetNextCoherentFileList(); }