X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=vtk%2FvtkgdcmSerieViewer.cxx;h=e6e063c9fdf61803eddd7116c392c69c3631d6bb;hb=5f167b24048b332639f18d4ffa71f123c7db2cdc;hp=e9ae51c02eb61997cf5d8d09dd934e40c7b5385f;hpb=951d1f96c7bff6329f19fa28444fae5c941c352d;p=gdcm.git diff --git a/vtk/vtkgdcmSerieViewer.cxx b/vtk/vtkgdcmSerieViewer.cxx index e9ae51c0..e6e063c9 100644 --- a/vtk/vtkgdcmSerieViewer.cxx +++ b/vtk/vtkgdcmSerieViewer.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: vtkgdcmSerieViewer.cxx,v $ Language: C++ - Date: $Date: 2005/08/31 09:01:59 $ - Version: $Revision: 1.9 $ + Date: $Date: 2005/10/20 15:33:18 $ + Version: $Revision: 1.14 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -43,7 +43,7 @@ #include "gdcmDocument.h" // for NO_SHADOWSEQ #include "gdcmSerieHelper.h" #include "gdcmDebug.h" -#include "gdcmValEntry.h" +#include "gdcmDataEntry.h" #include "gdcmArgMgr.h" // for Argument Manager functions #include // for strcmp @@ -170,9 +170,8 @@ int main(int argc, char *argv[]) int check = am->ArgMgrDefined("check"); - // ArgMgrGetString *does* return a char *, and takes char * as params ! - // what must I do to avoid warning on gcc? - bool bname = ( strcmp(am->ArgMgrGetString("order", "not found"),"name")==0 ); + // This is so ugly, a cstring is NOT a char * (god damit!) + bool bname = ( strcmp(am->ArgMgrGetString("order", (char*)"not found"),"name")==0 ); if (bname) elemsToOrderOn = am->ArgMgrGetXInt16Enum("order", &orderNb); @@ -200,11 +199,11 @@ int main(int argc, char *argv[]) // Just to see int nbFiles; - // For all the Coherent Files lists of the gdcm::Serie - gdcm::FileList *l = sh->GetFirstCoherentFileList(); + // For all the 'Single Serie UID' FileSets of the gdcm::Serie + gdcm::FileList *l = sh->GetFirstSingleSerieUIDFileSet(); if (l == 0 ) { - std::cout << "Oops! No CoherentFileList found ?!?" << std::endl; + std::cout << "Oops! No 'Single Serie UID' FileSet found ?!?" << std::endl; return 0; } @@ -224,9 +223,10 @@ int main(int argc, char *argv[]) } else { - std::cout << "Oops! Empty CoherentFileList found ?!?" << std::endl; + std::cout << "Oops! Empty 'Single Serie UID' FileSet found ?!?" + << std::endl; } - l = sh->GetNextCoherentFileList(); + l = sh->GetNextSingleSerieUIDFileSet(); } if (check) @@ -338,6 +338,7 @@ int main(int argc, char *argv[]) } \ if (nx%2 != 0) \ { \ + i = nx / 2; \ for (j=0;jgdcm::Document::GetValEntry( elemsToOrderOn[2*ri], - elemsToOrderOn[2*ri+1]); + e1= f1->GetDataEntry( elemsToOrderOn[2*ri], + elemsToOrderOn[2*ri+1]); - e2= f2->gdcm::Document::GetValEntry( elemsToOrderOn[2*ri], + e2= f2->GetDataEntry( elemsToOrderOn[2*ri], elemsToOrderOn[2*ri+1]); if(!e2 || !e2) { @@ -472,8 +473,8 @@ bool userSuppliedLessThanFunction(gdcm::File *f1, gdcm::File *f2) << " not found" << std::endl; continue; } - s1 = e1->gdcm::ValEntry::GetValue(); - s2 = e2->gdcm::ValEntry::GetValue(); + s1 = e1->GetString(); + s2 = e2->GetString(); std::cout << "[" << s1 << "] vs [" << s2 << "]" << std::endl; if ( s1 < s2 ) return true;