VTK
vtkPointData.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPointData.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 =========================================================================*/
30 #ifndef vtkPointData_h
31 #define vtkPointData_h
32 
33 #include "vtkCommonDataModelModule.h" // For export macro
34 #include "vtkDataSetAttributes.h"
35 
37 {
38 public:
39  static vtkPointData *New();
40 
42  void PrintSelf(ostream& os, vtkIndent indent);
43  void NullPoint(vtkIdType ptId);
44 
45 protected:
48 
49 private:
50  vtkPointData(const vtkPointData&); // Not implemented.
51  void operator=(const vtkPointData&); // Not implemented.
52 };
53 
54 #endif
55 
56 
vtkPointData
represent and manipulate point attribute data
Definition: vtkPointData.h:37
vtkIdType
int vtkIdType
Definition: vtkType.h:275
vtkCommonDataModelModule.h
vtkDataSetAttributes
represent and manipulate attribute data in a dataset
Definition: vtkDataSetAttributes.h:58
vtkTypeMacro
#define vtkTypeMacro(thisClass, superclass)
Definition: vtkSetGet.h:642
vtkPointData::~vtkPointData
~vtkPointData()
Definition: vtkPointData.h:47
vtkPointData::NullPoint
void NullPoint(vtkIdType ptId)
vtkPointData::New
static vtkPointData * New()
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkPointData::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent)
VTKCOMMONDATAMODEL_EXPORT
#define VTKCOMMONDATAMODEL_EXPORT
Definition: vtkCommonDataModelModule.h:15
vtkDataSetAttributes.h
vtkPointData::vtkPointData
vtkPointData()
Definition: vtkPointData.h:46