Medical Imaging Interaction Toolkit  2018.4.99-389bf124
Medical Imaging Interaction Toolkit
mitkPlanarFigureWriterFactory.h
Go to the documentation of this file.
1 /*============================================================================
2 
3 The Medical Imaging Interaction Toolkit (MITK)
4 
5 Copyright (c) German Cancer Research Center (DKFZ)
6 All rights reserved.
7 
8 Use of this source code is governed by a 3-clause BSD license that can be
9 found in the LICENSE file.
10 
11 ============================================================================*/
12 
13 #ifndef PLANARFIGURE_WRITERFACTORY_H_HEADER_INCLUDED
14 #define PLANARFIGURE_WRITERFACTORY_H_HEADER_INCLUDED
15 
16 #include "itkObjectFactoryBase.h"
17 #include "mitkBaseData.h"
18 
19 namespace mitk
20 {
21  class PlanarFigureWriterFactory : public itk::ObjectFactoryBase
22  {
23  public:
25 
27  const char *GetITKSourceVersion(void) const override;
28  const char *GetDescription(void) const override;
29 
31  itkFactorylessNewMacro(Self);
32 
37  DEPRECATED(static void RegisterOneFactory(void));
38 
43  DEPRECATED(static void UnRegisterOneFactory(void));
44 
45  protected:
47  ~PlanarFigureWriterFactory() override;
48 
49  private:
50  PlanarFigureWriterFactory(const Self &); // purposely not implemented
51  void operator=(const Self &); // purposely not implemented
52 
53  static itk::ObjectFactoryBase::Pointer GetInstance();
54  };
55 
56 } // end namespace mitk
57 
58 #endif // PLANARFIGURE_WRITERFACTORY_H_HEADER_INCLUDED
const char * GetITKSourceVersion(void) const override
DataCollection - Class to facilitate loading/accessing structured data.
const char * GetDescription(void) const override
#define DEPRECATED(func)
Definition: mitkCommon.h:179
mitkClassMacroItkParent(mitk::PlanarFigureWriterFactory, itk::ObjectFactoryBase)