ParaView
vtkSelectionDeliveryFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: vtkSelectionDeliveryFilter.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 vtkSelectionDeliveryFilter_h
25 #define vtkSelectionDeliveryFilter_h
26 
27 #include "vtkPVClientServerCoreRenderingModule.h" //needed for exports
28 #include "vtkSelectionAlgorithm.h"
29 
31 class vtkReductionFilter;
32 
33 class VTKPVCLIENTSERVERCORERENDERING_EXPORT vtkSelectionDeliveryFilter
34  : public vtkSelectionAlgorithm
35 {
36 public:
37  static vtkSelectionDeliveryFilter* New();
38  vtkTypeMacro(vtkSelectionDeliveryFilter, vtkSelectionAlgorithm);
39  void PrintSelf(ostream& os, vtkIndent indent);
40 
41 protected:
44 
45  virtual int FillInputPortInformation(int port, vtkInformation* info);
46  virtual int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
47  vtkInformationVector* outputVector);
48 
51 
52 private:
53  vtkSelectionDeliveryFilter(const vtkSelectionDeliveryFilter&) VTK_DELETE_FUNCTION;
54  void operator=(const vtkSelectionDeliveryFilter&) VTK_DELETE_FUNCTION;
55 };
56 
57 #endif
vtkClientServerMoveData * DeliveryFilter
Moves data from the server root node to the client.
vtkSelectionDeliveryFilter is a filter that can deliver vtkSelection from data-server nodes to the cl...
A generic filter that can reduce any type of dataset using any reduction algorithm.