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