]> Creatis software - clitk.git/blob - common/clitkVfImageIOFactory.cxx
again
[clitk.git] / common / clitkVfImageIOFactory.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 CLITKVFIMAGEIOFACTORY_CXX
18 #define CLITKVFIMAGEIOFACTORY_CXX
19
20 /**
21  * @file   clitkVfImageIOFactory.cxx
22  * @author Simon Rit <simon.rit@gmail.com>
23  * @date   Mon Sep 18 10:14:25 2006
24  * 
25  * @brief  
26  * 
27  * 
28  */
29
30 #include "clitkVfImageIOFactory.h"
31
32 //====================================================================
33 clitk::VfImageIOFactory::VfImageIOFactory() 
34 {
35   this->RegisterOverride("itkImageIOBase", 
36                                                  "VfImageIO",
37                                                  "Vf Image IO", 
38                                                  1,
39                                                  itk::CreateObjectFunction<VfImageIO>::New());
40 }
41
42
43 #endif /* end #define CLITKVFIMAGEIOFACTORY_CXX */
44