VTK  9.2.5
vtkPartitionedDataSetCollectionSource.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkPartitionedDataSetCollectionSource.h
5
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the above copyright notice for more information.
13
14=========================================================================*/
30#ifndef vtkPartitionedDataSetCollectionSource_h
31#define vtkPartitionedDataSetCollectionSource_h
32
33#include "vtkFiltersSourcesModule.h" // For export macro
35
36class VTKFILTERSSOURCES_EXPORT vtkPartitionedDataSetCollectionSource
38{
39public:
42 void PrintSelf(ostream& os, vtkIndent indent) override;
43
45
48 vtkSetClampMacro(NumberOfShapes, int, 0, 12);
49 vtkGetMacro(NumberOfShapes, int);
51
52protected:
55
58 vtkInformation* info, vtkInformationVector** input, vtkInformationVector* output) override;
59
60private:
62 void operator=(const vtkPartitionedDataSetCollectionSource&) = delete;
63
64 int NumberOfShapes;
65};
66
67#endif
a simple class to control print indentation
Definition: vtkIndent.h:40
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce vtkPartitionedDataSetCollectionAlgorithm.
a source that produces a vtkPartitionedDataSetCollection.
int RequestData(vtkInformation *info, vtkInformationVector **input, vtkInformationVector *output) override
Methods for subclasses to override to handle different pipeline requests.
static vtkPartitionedDataSetCollectionSource * New()
int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
Methods for subclasses to override to handle different pipeline requests.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.