]> Creatis software - clitk.git/blob - common/clitkHisImageIOFactory.cxx
removed headers
[clitk.git] / common / clitkHisImageIOFactory.cxx
1 #ifndef CLITKHISIMAGEIOFACTORY_CXX
2 #define CLITKHISIMAGEIOFACTORY_CXX
3 /**
4  =================================================
5  * @file   clitkHisImageIOFactory.cxx
6  * @author Simon Rit <simon.rit@gmail.com>
7  * @date   16 Feb 2010
8  * 
9  * @brief  
10  * 
11  * 
12  =================================================*/
13
14 #include "clitkHisImageIOFactory.h"
15
16 #include <fstream>
17
18 //====================================================================
19 clitk::HisImageIOFactory::HisImageIOFactory() 
20 {
21   this->RegisterOverride("itkImageIOBase",
22                          "HisImageIO",
23                          "His Image IO",
24                          1,
25                          itk::CreateObjectFunction<HisImageIO>::New());
26 }
27
28
29 #endif /* end #define CLITKHISIMAGEIOFACTORY_CXX */
30