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