]> Creatis software - clitk.git/blob - common/clitkIO.h
Initial revision
[clitk.git] / common / clitkIO.h
1 #ifndef CLITKIO_H
2 #define CLITKIO_H
3
4 /**
5    -------------------------------------------------------------------
6    * @file   clitkIO.h
7    * @author David Sarrut <David.Sarrut@creatis.insa-lyon.fr>
8    * @date   17 May 2006 07:57:56
9
10    * @brief  
11
12    -------------------------------------------------------------------*/
13
14 // std include
15 #include <iostream>
16 #include <fstream>
17
18 // clitk include
19 #include "clitkCommon.h"
20 #include "clitkImageCommon.h"
21 #include "clitkVoxImageIO.h"
22 #include "clitkVoxImageIOFactory.h"
23 #include "clitkVfImageIO.h"
24 #include "clitkVfImageIOFactory.h"
25
26 //--------------------------------------------------------------------
27 // CLITK_INIT
28 #define CLITK_INIT                                      \
29   itk::ImageIOFactory::RegisterBuiltInFactories();      \
30     clitk::VoxImageIOFactory::RegisterOneFactory();     \
31     clitk::VfImageIOFactory::RegisterOneFactory();
32
33 #endif /* end #define CLITKIO_H */
34