X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Example%2FFlatHashTablePrint.cxx;h=183ec8c1857f4561ab35fe6009cc528d2043fbec;hb=1fe34ecf6db1977790024ac1a0a4ce5be010b9d8;hp=8fc200755e6d66231efce91c3791498aad63acd1;hpb=5a0d183707a94e875a595036f64d0bd506faf618;p=gdcm.git diff --git a/Example/FlatHashTablePrint.cxx b/Example/FlatHashTablePrint.cxx index 8fc20075..183ec8c1 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/14 11:28:28 $ - Version: $Revision: 1.6 $ + Date: $Date: 2005/02/02 10:06:31 $ + Version: $Revision: 1.9 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -15,14 +15,14 @@ PURPOSE. See the above copyright notices for more information. =========================================================================*/ -#include "gdcmHeader.h" +#include "gdcmFile.h" #include "gdcmDocEntry.h" // Iterate on all the Dicom entries encountered in the gdcmFile (given // as line argument) and print them. This is an illustration of the // usage of \ref gdcmDocument::BuildFlatHashTable(). -int main(int argc, char* argv[]) +int main(int, char*[]) { /* if (argc < 2) { @@ -31,8 +31,8 @@ int main(int argc, char* argv[]) return 1; } - gdcm::Header* header = new gdcm::Header( argv[1] ); - gdcm::TagDocEntryHT* Ht = header->BuildFlatHashTable(); + gdcm::File *header = new gdcm::File( argv[1] ); + gdcm::TagDocEntryHT *Ht = header->BuildFlatHashTable(); for (gdcm::TagDocEntryHT::iterator tag = Ht->begin(); tag != Ht->end(); ++tag) {