ParaView
vtkPVDataRepresentationPipeline.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: vtkPVDataRepresentationPipeline.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 =========================================================================*/
26 #ifndef vtkPVDataRepresentationPipeline_h
27 #define vtkPVDataRepresentationPipeline_h
28 
29 #include "vtkCompositeDataPipeline.h"
30 #include "vtkPVClientServerCoreRenderingModule.h" //needed for exports
31 
32 class VTKPVCLIENTSERVERCORERENDERING_EXPORT vtkPVDataRepresentationPipeline
33  : public vtkCompositeDataPipeline
34 {
35 public:
36  static vtkPVDataRepresentationPipeline* New();
37  vtkTypeMacro(vtkPVDataRepresentationPipeline, vtkCompositeDataPipeline);
38  void PrintSelf(ostream& os, vtkIndent indent);
39 
40 protected:
43 
44  virtual int ForwardUpstream(int i, int j, vtkInformation* request);
45  virtual int ForwardUpstream(vtkInformation* request);
46 
47  virtual void ExecuteDataEnd(
48  vtkInformation* request, vtkInformationVector** inInfoVec, vtkInformationVector* outInfoVec);
49 
50  // Override this check to account for update extent.
51  virtual int NeedToExecuteData(
52  int outputPort, vtkInformationVector** inInfoVec, vtkInformationVector* outInfoVec);
53 
54  virtual int ProcessRequest(
55  vtkInformation* request, vtkInformationVector** inInfoVec, vtkInformationVector* outInfoVec);
56 
57 private:
59  void operator=(const vtkPVDataRepresentationPipeline&) VTK_DELETE_FUNCTION;
60 };
61 
62 #endif
executive for vtkPVDataRepresentation.