VTK  9.6.1
vtkOBJReader.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
23
24#ifndef vtkOBJReader_h
25#define vtkOBJReader_h
26
28#include "vtkIOGeometryModule.h" // For export macro
29
30VTK_ABI_NAMESPACE_BEGIN
31class VTKIOGEOMETRY_EXPORT vtkOBJReader : public vtkAbstractPolyDataReader
32{
33public:
34 static vtkOBJReader* New();
36 void PrintSelf(ostream& os, vtkIndent indent) override;
37
42 vtkGetStringMacro(Comment);
43
44protected:
46 ~vtkOBJReader() override;
47
49
53 vtkSetStringMacro(Comment);
54
55 char* Comment;
56
57private:
59
60 vtkOBJReader(const vtkOBJReader&) = delete;
61 void operator=(const vtkOBJReader&) = delete;
62};
63
64VTK_ABI_NAMESPACE_END
65#endif
a simple class to control print indentation
Definition vtkIndent.h:29
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
~vtkOBJReader() override
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
static vtkOBJReader * New()
Hold a reference to a vtkObjectBase instance.