VTK  9.6.20260127
vtkIFCReader.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
3
15
16#ifndef vtkIFCReader_h
17#define vtkIFCReader_h
18
19#include "vtkIOIFCModule.h" // For export macro
21
22VTK_ABI_NAMESPACE_BEGIN
24
31{
32public:
33 static vtkIFCReader* New();
35 void PrintSelf(ostream& os, vtkIndent indent) override;
36
38
44
46
50 vtkSetMacro(NumberOfThreads, int);
51 vtkGetMacro(NumberOfThreads, int);
53
55
58 vtkSetMacro(IncludeCurves, bool);
59 vtkGetMacro(IncludeCurves, bool);
60 vtkBooleanMacro(IncludeCurves, bool);
62
66 virtual int CanReadFile(VTK_FILEPATH const char* name);
67
68protected:
70 ~vtkIFCReader() override;
71
72 char* FileName;
75
77
78private:
79 vtkIFCReader(const vtkIFCReader&) = delete;
80 void operator=(const vtkIFCReader&) = delete;
81};
82
83VTK_ABI_NAMESPACE_END
84#endif
static vtkIFCReader * New()
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
Methods for subclasses to override to handle different pipeline requests.
char * FileName
~vtkIFCReader() override
virtual int CanReadFile(const char *name)
Returns true if it can read the IFC file, false otherwise.
vtkSetFilePathMacro(FileName)
Set/Get the name of the file.
vtkGetFilePathMacro(FileName)
Set/Get the name of the file.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
composite dataset to encapsulates a dataset consisting of partitions.
#define VTK_FILEPATH