VTK  9.6.1
vtkLogLookupTable.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
16
17#ifndef vtkLogLookupTable_h
18#define vtkLogLookupTable_h
19
20#include "vtkLookupTable.h"
21#include "vtkRenderingCoreModule.h" // For export macro
22#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
23
24VTK_ABI_NAMESPACE_BEGIN
25class VTKRENDERINGCORE_EXPORT VTK_MARSHALAUTO vtkLogLookupTable : public vtkLookupTable
26{
27public:
29
31 void PrintSelf(ostream& os, vtkIndent indent) override;
32
33protected:
34 vtkLogLookupTable(int sze = 256, int ext = 256);
35 ~vtkLogLookupTable() override = default;
36
37private:
38 vtkLogLookupTable(const vtkLogLookupTable&) = delete;
39 void operator=(const vtkLogLookupTable&) = delete;
40};
41
42VTK_ABI_NAMESPACE_END
43#endif
a simple class to control print indentation
Definition vtkIndent.h:29
vtkLogLookupTable(int sze=256, int ext=256)
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkLogLookupTable * New()
~vtkLogLookupTable() override=default
vtkLookupTable(int sze=256, int ext=256)
#define VTK_MARSHALAUTO