]> Creatis software - clitk.git/blob - common/clitkVoxImageIOFactory.cxx
remove MACRO for vvTool and others minors stuffs
[clitk.git] / common / clitkVoxImageIOFactory.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   clitk
4   Language:  C++
5                                                                                 
6   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
7   l'Image). All rights reserved. See Doc/License.txt or
8   http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
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 above copyright notices for more information.
13                                                                              
14 =========================================================================*/
15
16
17 #ifndef CLITKVOXIMAGEIOFACTORY_CXX
18 #define CLITKVOXIMAGEIOFACTORY_CXX
19
20 /**
21  =================================================
22  * @file   clitkVoxImageIOFactory.cxx
23  * @author David Sarrut <david.sarrut@creatis.insa-lyon.fr>
24  * @date   03 Jul 2006 11:29:10
25  * 
26  * @brief  
27  * 
28  * 
29  =================================================*/
30
31 #include "clitkVoxImageIOFactory.h"
32
33 #include <fstream>
34
35 //====================================================================
36 clitk::VoxImageIOFactory::VoxImageIOFactory() 
37 {
38   this->RegisterOverride("itkImageIOBase", 
39                                                  "VoxImageIO",
40                                                  "Vox Image IO", 
41                                                  1,
42                                                  itk::CreateObjectFunction<VoxImageIO>::New());
43 }
44
45
46 #endif /* end #define CLITKVOXIMAGEIOFACTORY_CXX */
47