vtkTimeStepProgressFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: vtkTimeStepProgressFilter.h
5 
6  Copyright (c) Kitware, Inc.
7  All rights reserved.
8  See Copyright.txt or http://www.paraview.org/HTML/Copyright.html 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 =========================================================================*/
24 #ifndef vtkTimeStepProgressFilter_h
25 #define vtkTimeStepProgressFilter_h
26 
27 #include "vtkPVVTKExtensionsFiltersGeneralModule.h" //needed for exports
28 #include "vtkTableAlgorithm.h"
29 
31 {
32 public:
35  void PrintSelf(ostream& os, vtkIndent indent) override;
36 
37 protected:
39  ~vtkTimeStepProgressFilter() override;
40 
41  int FillInputPortInformation(int port, vtkInformation* info) override;
42  int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
43  vtkInformationVector* outputVector) override;
44 
45  int RequestInformation(vtkInformation* request, vtkInformationVector** inputVector,
46  vtkInformationVector* outputVector) override;
47 
48  double TimeRange[2];
49  double* TimeSteps;
52 
53 private:
55  void operator=(const vtkTimeStepProgressFilter&) = delete;
56 };
57 
58 #endif
static vtkTableAlgorithm * New()
virtual int RequestInformation(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
void PrintSelf(ostream &os, vtkIndent indent) VTK_OVERRIDE
This filter can be attached to any filter/source/reader that supports time.
virtual int FillInputPortInformation(int port, vtkInformation *info)
#define VTKPVVTKEXTENSIONSFILTERSGENERAL_EXPORT
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
void operator=(const vtkObjectBase &)