VTK  9.3.1
vtkPartitionedDataSetCollectionSource.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
18 #ifndef vtkPartitionedDataSetCollectionSource_h
19 #define vtkPartitionedDataSetCollectionSource_h
20 
21 #include "vtkFiltersSourcesModule.h" // For export macro
23 
24 VTK_ABI_NAMESPACE_BEGIN
25 class VTKFILTERSSOURCES_EXPORT vtkPartitionedDataSetCollectionSource
27 {
28 public:
31  void PrintSelf(ostream& os, vtkIndent indent) override;
32 
34 
37  vtkSetClampMacro(NumberOfShapes, int, 0, 12);
38  vtkGetMacro(NumberOfShapes, int);
40 
41 protected:
44 
46  int RequestData(
47  vtkInformation* info, vtkInformationVector** input, vtkInformationVector* output) override;
48 
49 private:
51  void operator=(const vtkPartitionedDataSetCollectionSource&) = delete;
52 
53  int NumberOfShapes;
54 };
55 
56 VTK_ABI_NAMESPACE_END
57 #endif
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
Store vtkAlgorithm input/output information.
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
Methods for subclasses to override to handle different pipeline requests.
virtual int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
Methods for subclasses to override to handle different pipeline requests.
a simple class to control print indentation
Definition: vtkIndent.h:28
a source that produces a vtkPartitionedDataSetCollection.
Superclass for algorithms that produce vtkPartitionedDataSetCollectionAlgorithm.
Store zero or more vtkInformation instances.
static vtkAlgorithm * New()