VTK  9.3.20240419
vtkAbstractPolyDataReader.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-License-Identifier: BSD-3-Clause
18 #ifndef vtkAbstractPolyDataReader_h
19 #define vtkAbstractPolyDataReader_h
20 
21 #include "vtkIOCoreModule.h" // For export macro
22 #include "vtkPolyDataAlgorithm.h"
23 
24 VTK_ABI_NAMESPACE_BEGIN
25 class VTKIOCORE_EXPORT vtkAbstractPolyDataReader : public vtkPolyDataAlgorithm
26 {
27 public:
29  void PrintSelf(ostream& os, vtkIndent indent) override;
30 
32 
38 
39 protected:
42 
43  char* FileName;
44 
45 private:
47  void operator=(const vtkAbstractPolyDataReader&) = delete;
48 };
49 
50 VTK_ABI_NAMESPACE_END
51 #endif
Superclass for algorithms that read models from a file.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkSetFilePathMacro(FileName)
Specify file name of AbstractPolyData file (obj / ply / stl).
vtkGetFilePathMacro(FileName)
Specify file name of AbstractPolyData file (obj / ply / stl).
~vtkAbstractPolyDataReader() override
a simple class to control print indentation
Definition: vtkIndent.h:108
Superclass for algorithms that produce only polydata as output.