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