VTK  9.2.6
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 
36 class VTKFILTERSSOURCES_EXPORT vtkPartitionedDataSetCollectionSource
38 {
39 public:
42  void PrintSelf(ostream& os, vtkIndent indent) override;
43 
45 
48  vtkSetClampMacro(NumberOfShapes, int, 0, 12);
49  vtkGetMacro(NumberOfShapes, int);
51 
52 protected:
55 
57  int RequestData(
58  vtkInformation* info, vtkInformationVector** input, vtkInformationVector* output) override;
59 
60 private:
62  void operator=(const vtkPartitionedDataSetCollectionSource&) = delete;
63 
64  int NumberOfShapes;
65 };
66 
67 #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:39
a source that produces a vtkPartitionedDataSetCollection.
Superclass for algorithms that produce vtkPartitionedDataSetCollectionAlgorithm.
Store zero or more vtkInformation instances.
static vtkAlgorithm * New()