]> Creatis software - clitk.git/blob - common/clitkIO.cxx
*** empty log message ***
[clitk.git] / common / clitkIO.cxx
1
2 /*-------------------------------------------------------------------------
3                                                                                 
4   Program:   clitk
5   Language:  C++
6                                                                                 
7   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
8   l'Image). All rights reserved. See Doc/License.txt or
9   http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
10                                                                                 
11   This software is distributed WITHOUT ANY WARRANTY; without even
12   the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
13   PURPOSE.  See the above copyright notices for more information.
14                                                                              
15   -------------------------------------------------------------------------*/
16
17 /**
18    -------------------------------------------------
19    * @file   clitkHisImageIO.cxx
20    * @author Simon Rit <simon.rit@gmail.com>
21    * @date   16 Feb 2010
22    * 
23    * @brief  
24    * 
25    * 
26    -------------------------------------------------*/
27
28 // std include
29 #include <iostream>
30 #include <fstream>
31
32 // itk include
33 #include "itkExceptionObject.h"
34
35 // clitk include
36 #include "clitkIO.h"
37 #include "clitkImageCommon.h"
38 #include "clitkVoxImageIO.h"
39 #include "clitkVoxImageIOFactory.h"
40 #include "clitkHisImageIO.h"
41 #include "clitkHisImageIOFactory.h"
42 #include "clitkVfImageIO.h"
43 #include "clitkVfImageIOFactory.h"
44 #include "clitkXdrImageIO.h"
45 #include "clitkXdrImageIOFactory.h"
46
47 //--------------------------------------------------------------------
48 // Register factories
49 void clitk::RegisterClitkFactories()
50 {
51     itk::ImageIOFactory::RegisterBuiltInFactories();
52     clitk::VoxImageIOFactory::RegisterOneFactory();
53     clitk::VfImageIOFactory::RegisterOneFactory();
54     clitk::HisImageIOFactory::RegisterOneFactory();
55     clitk::XdrImageIOFactory::RegisterOneFactory();
56 } ////
57