VTK
vtkPCellDataToPointData.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPCellDataToPointData.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm 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 =========================================================================*/
25 #ifndef __vtkPCellDataToPointData_h
26 #define __vtkPCellDataToPointData_h
27 
28 #include "vtkCellDataToPointData.h"
29 
31 {
32 public:
34  void PrintSelf(ostream& os, vtkIndent indent);
35 
36  static vtkPCellDataToPointData *New();
37 
39 
41  vtkSetMacro(PieceInvariant, int);
42  vtkGetMacro(PieceInvariant, int);
43  vtkBooleanMacro(PieceInvariant, int);
45 
46 protected:
49 
50  // Usual data generation method
51  virtual int RequestData(vtkInformation* request,
52  vtkInformationVector** inputVector,
53  vtkInformationVector* outputVector);
57 
59 private:
60  vtkPCellDataToPointData(const vtkPCellDataToPointData&); // Not implemented.
61  void operator=(const vtkPCellDataToPointData&); // Not implemented.
62 };
63 
64 #endif