vtkPVCutter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: vtkPVCutter.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 =========================================================================*/
23 #ifndef vtkPVCutter_h
24 #define vtkPVCutter_h
25 
26 #include "vtkCutter.h"
27 #include "vtkPVVTKExtensionsFiltersGeneralModule.h" //needed for exports
28 
30 {
31 public:
32  vtkTypeMacro(vtkPVCutter, vtkCutter);
33  void PrintSelf(ostream& os, vtkIndent indent) override;
34 
35  static vtkPVCutter* New();
36 
38 
39  //@
43  vtkGetMacro(Dual, bool);
44  vtkSetMacro(Dual, bool);
46 
47 protected:
48  vtkPVCutter();
49  ~vtkPVCutter() override;
50 
52 
53  virtual int RequestDataObject(vtkInformation*, vtkInformationVector**, vtkInformationVector*);
54 
55  int FillInputPortInformation(int, vtkInformation* info) override;
56  int FillOutputPortInformation(int, vtkInformation* info) override;
57 
58  bool Dual;
59 
60 private:
61  vtkPVCutter(const vtkPVCutter&) = delete;
62  void operator=(const vtkPVCutter&) = delete;
63 };
64 
65 #endif
virtual int FillOutputPortInformation(int port, vtkInformation *info)
virtual int ProcessRequest(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
#define VTKPVVTKEXTENSIONSFILTERSGENERAL_EXPORT
static vtkCutter * New()
void PrintSelf(ostream &os, vtkIndent indent)
virtual int FillInputPortInformation(int port, vtkInformation *info)
Slice Filter.
Definition: vtkPVCutter.h:29
void operator=(const vtkObjectBase &)