1 /*=========================================================================
4 Module: $RCSfile: FlatHashTablePrint.cxx,v $
6 Date: $Date: 2007/06/21 15:01:00 $
7 Version: $Revision: 1.11 $
9 Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10 l'Image). All rights reserved. See Doc/License.txt or
11 http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
13 This software is distributed WITHOUT ANY WARRANTY; without even
14 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 PURPOSE. See the above copyright notices for more information.
17 =========================================================================*/
19 #include "gdcmDocEntry.h"
21 // Iterate on all the Dicom entries encountered in the gdcmFile (given
22 // as line argument) and print them. This is an illustration of the
23 // usage of \ref gdcmDocument::BuildFlatHashTable().
25 int main(int, char*[])
29 std::cerr << "Usage :" << std::endl <<
30 argv[0] << " input_dicom " << std::endl;
33 GDCM_NAME_SPACE::File *header = new GDCM_NAME_SPACE::File();
34 header->SetFileName(argv[1] );
37 GDCM_NAME_SPACE::TagDocEntryHT *Ht = header->BuildFlatHashTable();
39 for (GDCM_NAME_SPACE::TagDocEntryHT::iterator tag = Ht->begin(); tag != Ht->end(); ++tag)
42 std::cout << std::endl;
44 std::cout<<"Usefull example ???\n";