VTK
dox/Common/DataModel/vtkNonLinearCell.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkNonLinearCell.h
00005 
00006   Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
00007   All rights reserved.
00008   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00009 
00010      This software is distributed WITHOUT ANY WARRANTY; without even
00011      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
00012      PURPOSE.  See the above copyright notice for more information.
00013 
00014 =========================================================================*/
00029 #ifndef __vtkNonLinearCell_h
00030 #define __vtkNonLinearCell_h
00031 
00032 #include "vtkCommonDataModelModule.h" // For export macro
00033 #include "vtkCell.h"
00034 
00035 class VTKCOMMONDATAMODEL_EXPORT vtkNonLinearCell : public vtkCell
00036 {
00037 public:
00038   vtkTypeMacro(vtkNonLinearCell,vtkCell);
00039   void PrintSelf(ostream& os, vtkIndent indent);
00040 
00044   virtual int IsLinear() {return 0;}
00045 
00046 protected:
00047   vtkNonLinearCell();
00048   ~vtkNonLinearCell() {}
00049 
00050 private:
00051   vtkNonLinearCell(const vtkNonLinearCell&);  // Not implemented.
00052   void operator=(const vtkNonLinearCell&);  // Not implemented.
00053 };
00054 
00055 #endif
00056 
00057