ParaView
vtkPConvertSelection.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: vtkPConvertSelection.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 =========================================================================*/
22 #ifndef vtkPConvertSelection_h
23 #define vtkPConvertSelection_h
24 
25 #include "vtkConvertSelection.h"
26 #include "vtkPVClientServerCoreCoreModule.h" //needed for exports
27 
28 class vtkMultiProcessController;
29 
30 class VTKPVCLIENTSERVERCORECORE_EXPORT vtkPConvertSelection : public vtkConvertSelection
31 {
32 public:
33  static vtkPConvertSelection* New();
34  vtkTypeMacro(vtkPConvertSelection, vtkConvertSelection);
35  void PrintSelf(ostream& os, vtkIndent indent);
36 
38 
41  void SetController(vtkMultiProcessController*);
42  vtkGetObjectMacro(Controller, vtkMultiProcessController);
44 
45 protected:
48 
49  virtual int RequestData(vtkInformation*, vtkInformationVector**, vtkInformationVector*);
50 
51  vtkMultiProcessController* Controller;
52 
53 private:
54  vtkPConvertSelection(const vtkPConvertSelection&) VTK_DELETE_FUNCTION;
55  void operator=(const vtkPConvertSelection&) VTK_DELETE_FUNCTION;
56 };
57 
58 #endif // vtkPConvertSelection_h
parallel aware vtkConvertSelection subclass.
vtkMultiProcessController * Controller