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
35#ifndef vtkArrayData_h
36#define vtkArrayData_h
37
38#include "vtkCommonDataModelModule.h" // For export macro
39#include "vtkDataObject.h"
40
41VTK_ABI_NAMESPACE_BEGIN
42class vtkArray;
43
44class VTKCOMMONDATAMODEL_EXPORT vtkArrayData : public vtkDataObject
45{
46public:
47 static vtkArrayData* New();
49 void PrintSelf(ostream& os, vtkIndent indent) override;
50
53
58
63
68
73
77 vtkArray* GetArrayByName(const char* name);
78
82 int GetDataObjectType() override { return VTK_ARRAY_DATA; }
83
84 void ShallowCopy(vtkDataObject* other) override;
85 void DeepCopy(vtkDataObject* other) override;
86
87protected:
89 ~vtkArrayData() override;
90
91private:
92 vtkArrayData(const vtkArrayData&) = delete;
93 void operator=(const vtkArrayData&) = delete;
94
95 class implementation;
96 implementation* const Implementation;
97};
98
99VTK_ABI_NAMESPACE_END
100#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:38
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