]> Creatis software - clitk.git/blob - common/clitkVfImageIOFactory.cxx
c929c009cf48f26b9e7b3e11f0b2973a35d41129
[clitk.git] / common / clitkVfImageIOFactory.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   clitk
4   Module:    $RCSfile: clitkVfImageIOFactory.cxx,v $
5   Language:  C++
6   Date:      $Date: 2010/01/06 13:32:01 $
7   Version:   $Revision: 1.1 $
8                                                                                 
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.
12                                                                                 
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.
16                                                                              
17 =========================================================================*/
18
19
20 #ifndef CLITKVFIMAGEIOFACTORY_CXX
21 #define CLITKVFIMAGEIOFACTORY_CXX
22
23 /**
24  * @file   clitkVfImageIOFactory.cxx
25  * @author Simon Rit <simon.rit@gmail.com>
26  * @date   Mon Sep 18 10:14:25 2006
27  * 
28  * @brief  
29  * 
30  * 
31  */
32
33 #include "clitkVfImageIOFactory.h"
34
35 //====================================================================
36 clitk::VfImageIOFactory::VfImageIOFactory() 
37 {
38   this->RegisterOverride("itkImageIOBase", 
39                                                  "VfImageIO",
40                                                  "Vf Image IO", 
41                                                  1,
42                                                  itk::CreateObjectFunction<VfImageIO>::New());
43 }
44
45
46 #endif /* end #define CLITKVFIMAGEIOFACTORY_CXX */
47