VTK
vtkNonLinearCell.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkNonLinearCell.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 =========================================================================*/
29 #ifndef vtkNonLinearCell_h
30 #define vtkNonLinearCell_h
31 
32 #include "vtkCommonDataModelModule.h" // For export macro
33 #include "vtkCell.h"
34 
36 {
37 public:
38  vtkTypeMacro(vtkNonLinearCell,vtkCell);
39  void PrintSelf(ostream& os, vtkIndent indent);
40 
44  virtual int IsLinear() {return 0;}
45 
46 protected:
49 
50 private:
51  vtkNonLinearCell(const vtkNonLinearCell&); // Not implemented.
52  void operator=(const vtkNonLinearCell&); // Not implemented.
53 };
54 
55 #endif
56 
57 
void PrintSelf(ostream &os, vtkIndent indent)
abstract superclass for non-linear cells
abstract class to specify cell behavior
Definition: vtkCell.h:61
virtual int IsLinear()
a simple class to control print indentation
Definition: vtkIndent.h:38
#define VTKCOMMONDATAMODEL_EXPORT