ParaView
vtkCPCellFieldBuilder.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: vtkCPCellFieldBuilder.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 vtkCPCellFieldBuilder_h
23 #define vtkCPCellFieldBuilder_h
24 
25 #include "vtkCPFieldBuilder.h"
26 #include "vtkPVCatalystTestDriverModule.h" // needed for export macros
27 
28 class VTKPVCATALYSTTESTDRIVER_EXPORT vtkCPCellFieldBuilder : public vtkCPFieldBuilder
29 {
30 public:
31  static vtkCPCellFieldBuilder* New();
33  void PrintSelf(ostream& os, vtkIndent indent);
34 
38  virtual void BuildField(unsigned long TimeStep, double Time, vtkDataSet* Grid);
39 
45 protected:
48 
49 private:
50  vtkCPCellFieldBuilder(const vtkCPCellFieldBuilder&) VTK_DELETE_FUNCTION;
51  void operator=(const vtkCPCellFieldBuilder&) VTK_DELETE_FUNCTION;
52 };
53 
54 #endif
void PrintSelf(ostream &os, vtkIndent indent)
virtual void BuildField(unsigned long TimeStep, double Time, vtkDataSet *Grid)=0
Return a field on Grid.
Class for specifying cell fields over grids.
Abstract class for specifying fields over grids.