1 /*=========================================================================
2 Program: vv http://www.creatis.insa-lyon.fr/rio/vv
5 - University of LYON http://www.universite-lyon.fr/
6 - Léon Bérard cancer center http://www.centreleonberard.fr
7 - CREATIS CNRS laboratory http://www.creatis.insa-lyon.fr
9 This software is distributed WITHOUT ANY WARRANTY; without even
10 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11 PURPOSE. See the copyright notices for more information.
13 It is distributed under dual licence
15 - BSD See included LICENSE.txt file
16 - CeCILL-B http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
17 ===========================================================================**/
18 #ifndef clitkDicomRTDoseIOFactory_h
19 #define clitkDicomRTDoseIOFactory_h
22 #include "clitkDicomRTDoseIO.h"
25 #include "itkImageIOBase.h"
26 #include "itkObjectFactoryBase.h"
27 #include "itkVersion.h"
32 //====================================================================
33 // Factory for reading Dicom RT Dose file
34 class DicomRTDoseIOFactory: public itk::ObjectFactoryBase
37 /** Standard class typedefs. */
38 typedef DicomRTDoseIOFactory Self;
39 typedef itk::ObjectFactoryBase Superclass;
40 typedef itk::SmartPointer<Self> Pointer;
41 typedef itk::SmartPointer<const Self> ConstPointer;
43 /** Class methods used to interface with the registered factories. */
44 const char* GetITKSourceVersion(void) const {
45 return ITK_SOURCE_VERSION;
48 const char* GetDescription(void) const {
49 return "Dicom RT Dose IO factory";
52 /** Method for class instantiation. */
53 itkFactorylessNewMacro(Self);
55 /** Run-time type information (and related methods). */
56 itkTypeMacro(DicomRTDoseIOFactory, ObjectFactoryBase);
58 /** Register one factory of this type */
59 static void RegisterOneFactory(void) {
60 ObjectFactoryBase::RegisterFactory( Self::New() );
64 DicomRTDoseIOFactory();
65 ~DicomRTDoseIOFactory() {};
68 DicomRTDoseIOFactory(const Self&); //purposely not implemented
69 void operator=(const Self&); //purposely not implemented
74 #endif /* end #define clitkDicomRTDoseIOFactory_h */