]> Creatis software - clitk.git/blob - tools/clitkDicomRTStructInfo.cxx
e44934848542a76128d96acb572956bdacac8204
[clitk.git] / tools / clitkDicomRTStructInfo.cxx
1 /*=========================================================================
2   Program:         vv http://www.creatis.insa-lyon.fr/rio/vv
3   Main authors :   XX XX XX
4
5   Authors belongs to: 
6   - University of LYON           http://www.universite-lyon.fr/
7   - Léon Bérard cancer center    http://oncora1.lyon.fnclcc.fr
8   - CREATIS CNRS laboratory      http://www.creatis.insa-lyon.fr
9
10   This software is distributed WITHOUT ANY WARRANTY; without even
11   the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12   PURPOSE.  See the copyright notices for more information.
13
14   It is distributed under dual licence
15   - BSD       http://www.opensource.org/licenses/bsd-license.php
16   - CeCILL-B  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
17
18   =========================================================================*/
19
20 #include "clitkDicomRT_StructureSet.h"
21 #include "clitkDicomRTStructInfo_ggo.h"
22
23 //--------------------------------------------------------------------
24 int main(int argc, char * argv[]) {
25
26   // Init command line
27   GGO(clitkDicomRTStructInfo, args_info);
28
29   // Read and display information
30   clitk::DicomRT_StructureSet s;
31   s.Read(args_info.input_arg);
32   s.Print(std::cout);
33
34   // This is the end my friend 
35   return 0;
36 }