Loading [MathJax]/jax/output/HTML-CSS/config.js
VTK  9.4.20250406
vtkLANLX3DReader.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Kitware Inc.
2// SPDX-FileCopyrightText: Copyright (c) 2021, Los Alamos National Laboratory
3// SPDX-FileCopyrightText: Copyright (c) 2021. Triad National Security, LLC
4// SPDX-License-Identifier: LicenseRef-BSD-3-Clause-LANL-Triad-USGov
19#ifndef vtkLANLX3DReader_h
20#define vtkLANLX3DReader_h
21
22#include "vtkIOLANLX3DModule.h" // for export macro
24
26
27VTK_ABI_NAMESPACE_BEGIN
28class VTKIOLANLX3D_EXPORT vtkLANLX3DReader : public vtkMultiBlockDataSetAlgorithm
29{
30public:
33 void PrintSelf(ostream& os, vtkIndent indent) override;
34
35 vtkSetStringMacro(FileName);
36 vtkGetStringMacro(FileName);
37
38 vtkSetMacro(ReadAllPieces, bool);
39 vtkGetMacro(ReadAllPieces, bool);
40
41protected:
44
45 char* FileName = nullptr;
46 bool ReadAllPieces = true;
47
49
51
52private:
53 vtkLANLX3DReader(const vtkLANLX3DReader&) = delete;
54 void operator=(const vtkLANLX3DReader&) = delete;
55};
56VTK_ABI_NAMESPACE_END
57
58#endif
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
class for reading LANL X3D format files
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkLANLX3DReader * New()
~vtkLANLX3DReader() override
int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
Superclass for algorithms that produce only vtkMultiBlockDataSet as output.
Composite dataset that organizes datasets into blocks.