1 /*=========================================================================
4 Module: $RCSfile: FlatHashTablePrint.cxx,v $
6 Date: $Date: 2004/12/03 20:16:55 $
7 Version: $Revision: 1.5 $
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 =========================================================================*/
18 #include "gdcmHeader.h"
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 argc, char* argv[])
29 std::cerr << "Usage :" << std::endl <<
30 argv[0] << " input_dicom " << std::endl;
34 gdcm::Header* header = new gdcm::Header( argv[1] );
35 gdcm::TagDocEntryHT* Ht = header->BuildFlatHashTable();
37 for (gdcm::TagDocEntryHT::iterator tag = Ht->begin(); tag != Ht->end(); ++tag)
40 std::cout << std::endl;