]> Creatis software - clitk.git/blob - vv/vvInit.cxx
removed headers
[clitk.git] / vv / vvInit.cxx
1 #include "nkitkXDRImageIO.h"
2 #include "nkitkXDRImageIOFactory.h"
3 #include "clitkVoxImageIO.h"
4 #include "clitkVoxImageIOFactory.h"
5 #include "clitkVfImageIO.h"
6 #include "clitkVfImageIOFactory.h"
7
8 #include "itkImage.h"
9 #include "itkImageFileReader.h"
10 #include "itkByteSwapper.h"
11
12
13 void initialize_IO()
14 {
15     itk::ImageIOFactory::RegisterBuiltInFactories();
16     clitk::VoxImageIOFactory::RegisterOneFactory();
17     clitk::VfImageIOFactory::RegisterOneFactory();
18     nkitk::XDRImageIOFactory::RegisterOneFactory();
19 }