]> Creatis software - clitk.git/blob - common/clitkVoxImageIOFactory.cxx
Initial revision
[clitk.git] / common / clitkVoxImageIOFactory.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   clitk
4   Module:    $RCSfile: clitkVoxImageIOFactory.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 CLITKVOXIMAGEIOFACTORY_CXX
21 #define CLITKVOXIMAGEIOFACTORY_CXX
22
23 /**
24  =================================================
25  * @file   clitkVoxImageIOFactory.cxx
26  * @author David Sarrut <david.sarrut@creatis.insa-lyon.fr>
27  * @date   03 Jul 2006 11:29:10
28  * 
29  * @brief  
30  * 
31  * 
32  =================================================*/
33
34 #include "clitkVoxImageIOFactory.h"
35
36 //====================================================================
37 clitk::VoxImageIOFactory::VoxImageIOFactory() 
38 {
39   this->RegisterOverride("itkImageIOBase", 
40                                                  "VoxImageIO",
41                                                  "Vox Image IO", 
42                                                  1,
43                                                  itk::CreateObjectFunction<VoxImageIO>::New());
44 }
45
46
47 #endif /* end #define CLITKVOXIMAGEIOFACTORY_CXX */
48