Medical Imaging Interaction Toolkit  2023.12.99-63768887
Medical Imaging Interaction Toolkit
mitkSTLFileIOFactory.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 #ifndef mitkSTLFileIOFactory_h
13 #define mitkSTLFileIOFactory_h
14 
15 #ifdef _MSC_VER
16 #pragma warning(disable : 4786)
17 #endif
18 
19 #include <MitkLegacyIOExports.h>
20 
21 #include "itkObjectFactoryBase.h"
22 #include "mitkBaseData.h"
23 
24 namespace mitk
25 {
26  //##Documentation
27  //## @brief Create instances of STLFileReader objects using an object factory.
28  //##
29  //## @ingroup MitkLegacyIOModule
30  //## @deprecatedSince{2014_10} Use mitk::IOUtils or mitk::FileReaderRegistry instead.
31  class DEPRECATED() MITKLEGACYIO_EXPORT STLFileIOFactory : public itk::ObjectFactoryBase
32  {
33  public:
36  typedef itk::ObjectFactoryBase Superclass;
39 
41  const char *GetITKSourceVersion(void) const override;
42  const char *GetDescription(void) const override;
43 
45  itkFactorylessNewMacro(Self);
46  static STLFileIOFactory *FactoryNew() { return new STLFileIOFactory; }
48  itkTypeMacro(STLFileIOFactory, ObjectFactoryBase);
49 
54  DEPRECATED(static void RegisterOneFactory(void))
55  {
57  ObjectFactoryBase::RegisterFactory(STLFileIOFactory);
58  }
59 
60  protected:
62  ~STLFileIOFactory() override;
63 
64  private:
65  STLFileIOFactory(const Self &); // purposely not implemented
66  void operator=(const Self &); // purposely not implemented
67  };
68 
69 } // end namespace mitk
70 
71 #endif
mitk::STLFileIOFactory::Superclass
itk::ObjectFactoryBase Superclass
Definition: mitkSTLFileIOFactory.h:36
mitk::STLFileIOFactory::RegisterOneFactory
static void RegisterOneFactory(void)
Definition: mitkSTLFileIOFactory.h:54
mitk::STLFileIOFactory::Self
STLFileIOFactory Self
Definition: mitkSTLFileIOFactory.h:35
mitk::STLFileIOFactory::New
static Pointer New()
DEPRECATED
#define DEPRECATED(func)
Definition: mitkCommon.h:175
itk::SmartPointer< Self >
MitkLegacyIOExports.h
mitk::STLFileIOFactory::ConstPointer
itk::SmartPointer< const Self > ConstPointer
Definition: mitkSTLFileIOFactory.h:38
mitk::STLFileIOFactory
Create instances of STLFileReader objects using an object factory.
Definition: mitkSTLFileIOFactory.h:31
mitk
Find image slices visible on a given plane.
Definition: RenderingTests.dox:1
mitk::STLFileIOFactory::Pointer
itk::SmartPointer< Self > Pointer
Definition: mitkSTLFileIOFactory.h:37
MITKLEGACYIO_EXPORT
#define MITKLEGACYIO_EXPORT
Definition: MitkLegacyIOExports.h:15
mitkBaseData.h
mitk::STLFileIOFactory::FactoryNew
static STLFileIOFactory * FactoryNew()
Definition: mitkSTLFileIOFactory.h:46