X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Example%2FFlatHashTablePrint.cxx;h=09b427277c85ca61809285331393f004609bc061;hb=9fc41d585113e37d4d1d1d511e61d2e638096fb3;hp=fd134640c5e3f1309a580a001afc6b78d3e8a2d7;hpb=c094e185dd6404df031524ccae8e1b51e3b84871;p=gdcm.git diff --git a/Example/FlatHashTablePrint.cxx b/Example/FlatHashTablePrint.cxx index fd134640..09b42727 100644 --- a/Example/FlatHashTablePrint.cxx +++ b/Example/FlatHashTablePrint.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: FlatHashTablePrint.cxx,v $ Language: C++ - Date: $Date: 2005/01/21 11:40:52 $ - Version: $Revision: 1.8 $ + Date: $Date: 2007/06/21 15:01:00 $ + Version: $Revision: 1.11 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -22,7 +22,7 @@ // as line argument) and print them. This is an illustration of the // usage of \ref gdcmDocument::BuildFlatHashTable(). -int main(int , char* []) +int main(int, char*[]) { /* if (argc < 2) { @@ -30,11 +30,13 @@ int main(int , char* []) argv[0] << " input_dicom " << std::endl; return 1; } - - gdcm::File* header = new gdcm::File( argv[1] ); - gdcm::TagDocEntryHT* Ht = header->BuildFlatHashTable(); + GDCM_NAME_SPACE::File *header = new GDCM_NAME_SPACE::File(); + header->SetFileName(argv[1] ); + header->Load(); + + GDCM_NAME_SPACE::TagDocEntryHT *Ht = header->BuildFlatHashTable(); - for (gdcm::TagDocEntryHT::iterator tag = Ht->begin(); tag != Ht->end(); ++tag) + for (GDCM_NAME_SPACE::TagDocEntryHT::iterator tag = Ht->begin(); tag != Ht->end(); ++tag) { tag->second->Print(); std::cout << std::endl;