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