ParaView
vtkPVCompositeDataPipeline.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPVCompositeDataPipeline.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 =========================================================================*/
28 #ifndef vtkPVCompositeDataPipeline_h
29 #define vtkPVCompositeDataPipeline_h
30 
31 #include "vtkCompositeDataPipeline.h"
32 #include "vtkPVVTKExtensionsCoreModule.h" // needed for export macro
33 
34 class VTKPVVTKEXTENSIONSCORE_EXPORT vtkPVCompositeDataPipeline : public vtkCompositeDataPipeline
35 {
36 public:
37  static vtkPVCompositeDataPipeline* New();
38  vtkTypeMacro(vtkPVCompositeDataPipeline, vtkCompositeDataPipeline);
39  void PrintSelf(ostream& os, vtkIndent indent);
40 
41 protected:
44 
45  // Copy information for the given request.
46  virtual void CopyDefaultInformation(vtkInformation* request, int direction,
47  vtkInformationVector** inInfoVec, vtkInformationVector* outInfoVec);
48 
49  // Remove update/whole extent when resetting pipeline information.
50  virtual void ResetPipelineInformation(int port, vtkInformation*);
51 
52 private:
53  vtkPVCompositeDataPipeline(const vtkPVCompositeDataPipeline&) VTK_DELETE_FUNCTION;
54  void operator=(const vtkPVCompositeDataPipeline&) VTK_DELETE_FUNCTION;
55 };
56 
57 #endif
executive to add support for vtkPVPostFilter in ParaView data pipelines.