VTK  9.0.3
vtkImageReader2Factory.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageReader2Factory.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
35 #ifndef vtkImageReader2Factory_h
36 #define vtkImageReader2Factory_h
37 
38 #include "vtkIOImageModule.h" // For export macro
39 #include "vtkObject.h"
40 
41 class vtkImageReader2;
43 class vtkImageReader2FactoryCleanup;
44 
45 class VTKIOIMAGE_EXPORT vtkImageReader2Factory : public vtkObject
46 {
47 public:
50  void PrintSelf(ostream& os, vtkIndent indent) override;
51 
57 
64  static vtkImageReader2* CreateImageReader2(const char* path);
65 
71 
72 protected:
75 
76  static void InitializeReaders();
77 
78 private:
79  static vtkImageReader2Collection* AvailableReaders;
81  void operator=(const vtkImageReader2Factory&) = delete;
82 
83  friend class vtkImageReader2FactoryCleanup;
84 };
85 
86 #endif
maintain a list of image readers
Superclass of binary file readers.
~vtkImageReader2Factory() override
static vtkImageReader2Factory * New()
static void InitializeReaders()
static void GetRegisteredReaders(vtkImageReader2Collection *)
The caller must allocate the vtkImageReader2Collection and pass in the pointer to this method.
static void RegisterReader(vtkImageReader2 *r)
registered readers will be queried in CreateImageReader2 to see if they can load a given file.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkImageReader2 * CreateImageReader2(const char *path)
open the image file, it is the callers responsibility to call Delete on the returned object.
Superclass of binary file readers.
a simple class to control print indentation
Definition: vtkIndent.h:34
abstract base class for most VTK objects
Definition: vtkObject.h:54
#define VTK_NEWINSTANCE