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 "vtkCell.h"
33 
34 class VTK_FILTERING_EXPORT vtkNonLinearCell : public vtkCell
35 {
36 public:
37  vtkTypeMacro(vtkNonLinearCell,vtkCell);
38  void PrintSelf(ostream& os, vtkIndent indent);
39 
43  virtual int IsLinear() {return 0;}
44 
45 protected:
48 
49 private:
50  vtkNonLinearCell(const vtkNonLinearCell&); // Not implemented.
51  void operator=(const vtkNonLinearCell&); // Not implemented.
52 };
53 
54 #endif
55 
56 
#define VTK_FILTERING_EXPORT
abstract superclass for non-linear cells
virtual int IsLinear()
a simple class to control print indentation
Definition: vtkIndent.h:37