VTK  9.6.20251228
vtkUSDExporter.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 vtkUSDExporter_h
25#define vtkUSDExporter_h
26
27#include "vtkExporter.h"
28#include "vtkIOUSDModule.h" // For export macro
29
30#include <string> // for std::string
31
32VTK_ABI_NAMESPACE_BEGIN
33class VTKIOUSD_EXPORT vtkUSDExporter : public vtkExporter
34{
35public:
38 void PrintSelf(ostream& os, vtkIndent indent) override;
39
41
47
48protected:
50 ~vtkUSDExporter() override;
51
52private:
53 vtkUSDExporter(const vtkUSDExporter&) = delete;
54 void operator=(const vtkUSDExporter&) = delete;
55
56 void WriteData() override;
57
61 char* FileName;
62};
63
64VTK_ABI_NAMESPACE_END
65#endif
virtual void WriteData()=0
a simple class to control print indentation
Definition vtkIndent.h:108
vtkGetFilePathMacro(FileName)
Specify the name of the file to write.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkSetFilePathMacro(FileName)
Specify the name of the file to write.
~vtkUSDExporter() override
static vtkUSDExporter * New()