vtkTimeStepProgressFilter.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Kitware Inc.
2 // SPDX-License-Identifier: BSD-3-Clause
12 #ifndef vtkTimeStepProgressFilter_h
13 #define vtkTimeStepProgressFilter_h
14 
15 #include "vtkPVVTKExtensionsFiltersGeneralModule.h" //needed for exports
16 #include "vtkTableAlgorithm.h"
17 
18 class VTKPVVTKEXTENSIONSFILTERSGENERAL_EXPORT vtkTimeStepProgressFilter : public vtkTableAlgorithm
19 {
20 public:
23  void PrintSelf(ostream& os, vtkIndent indent) override;
24 
25 protected:
27  ~vtkTimeStepProgressFilter() override;
28 
29  int FillInputPortInformation(int port, vtkInformation* info) override;
30  int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
31  vtkInformationVector* outputVector) override;
32 
33  int RequestInformation(vtkInformation* request, vtkInformationVector** inputVector,
34  vtkInformationVector* outputVector) override;
35 
36  double TimeRange[2];
37  double* TimeSteps;
40 
41 private:
43  void operator=(const vtkTimeStepProgressFilter&) = delete;
44 };
45 
46 #endif
vtkObjectBase::operator=
void operator=(const vtkObjectBase &)
vtkTableAlgorithm::RequestInformation
virtual int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
vtkInformationVector
vtkTableAlgorithm::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) VTK_OVERRIDE
vtkTimeStepProgressFilter::UseTimeRange
bool UseTimeRange
Definition: vtkTimeStepProgressFilter.h:39
vtkTableAlgorithm
vtkTableAlgorithm::FillInputPortInformation
virtual int FillInputPortInformation(int port, vtkInformation *info)
vtkIndent
vtkInformation
vtkTimeStepProgressFilter::NumTimeSteps
int NumTimeSteps
Definition: vtkTimeStepProgressFilter.h:38
vtkTimeStepProgressFilter
Definition: vtkTimeStepProgressFilter.h:18
vtkTableAlgorithm.h
vtkTableAlgorithm::RequestData
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
vtkTimeStepProgressFilter::TimeSteps
double * TimeSteps
Definition: vtkTimeStepProgressFilter.h:37
vtkTableAlgorithm::New
static vtkTableAlgorithm * New()