vtkCellData.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00038 #ifndef __vtkCellData_h
00039 #define __vtkCellData_h
00040
00041 #include "vtkDataSetAttributes.h"
00042
00043 class VTK_FILTERING_EXPORT vtkCellData : public vtkDataSetAttributes
00044 {
00045 public:
00046 static vtkCellData *New();
00047
00048 vtkTypeRevisionMacro(vtkCellData,vtkDataSetAttributes);
00049 void PrintSelf(ostream& os, vtkIndent indent);
00050
00051 protected:
00052 vtkCellData() {};
00053 ~vtkCellData() {};
00054
00055 private:
00056 vtkCellData(const vtkCellData&);
00057 void operator=(const vtkCellData&);
00058 };
00059
00060 #endif
00061
00062
00063