VTK  9.3.0
vtkArrayData.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-FileCopyrightText: Copyright 2008 Sandia Corporation
3// SPDX-License-Identifier: LicenseRef-BSD-3-Clause-Sandia-USGov
4
26#ifndef vtkArrayData_h
27#define vtkArrayData_h
28
29#include "vtkCommonDataModelModule.h" // For export macro
30#include "vtkDataObject.h"
31
32VTK_ABI_NAMESPACE_BEGIN
33class vtkArray;
34
35class VTKCOMMONDATAMODEL_EXPORT vtkArrayData : public vtkDataObject
36{
37public:
38 static vtkArrayData* New();
40 void PrintSelf(ostream& os, vtkIndent indent) override;
41
44
49
54
59
64
68 vtkArray* GetArrayByName(const char* name);
69
73 int GetDataObjectType() override { return VTK_ARRAY_DATA; }
74
75 void ShallowCopy(vtkDataObject* other) override;
76 void DeepCopy(vtkDataObject* other) override;
77
78protected:
80 ~vtkArrayData() override;
81
82private:
83 vtkArrayData(const vtkArrayData&) = delete;
84 void operator=(const vtkArrayData&) = delete;
85
86 class implementation;
87 implementation* const Implementation;
88};
89
90VTK_ABI_NAMESPACE_END
91#endif
Pipeline data object that contains multiple vtkArray objects.
static vtkArrayData * GetData(vtkInformation *info)
static vtkArrayData * GetData(vtkInformationVector *v, int i=0)
void DeepCopy(vtkDataObject *other) override
The goal of the method is to copy the complete data from src into this object.
vtkArray * GetArray(vtkIdType index)
Returns the n-th vtkArray in the collection.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void ClearArrays()
Clears the contents of the collection.
vtkArray * GetArrayByName(const char *name)
Returns the array having called name from the collection.
void AddArray(vtkArray *)
Adds a vtkArray to the collection.
static vtkArrayData * New()
void ShallowCopy(vtkDataObject *other) override
The goal of the method is to copy the data up to the array pointers only.
~vtkArrayData() override
vtkIdType GetNumberOfArrays()
Returns the number of vtkArray instances in the collection.
int GetDataObjectType() override
Return class name of data type (VTK_ARRAY_DATA).
Abstract interface for N-dimensional arrays.
Definition vtkArray.h:52
general representation of visualization data
a simple class to control print indentation
Definition vtkIndent.h:29
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
int vtkIdType
Definition vtkType.h:315
#define VTK_ARRAY_DATA
Definition vtkType.h:92