VTK
dox/Filters/General/vtkLevelIdScalars.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003  Program:   Visualization Toolkit
00004  Module:    vtkLevelIdScalars.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  =========================================================================*/
00021 #ifndef VTKLEVELIDSCALARS_H_
00022 #define VTKLEVELIDSCALARS_H_
00023 
00024 #include "vtkFiltersGeneralModule.h" // For export macro
00025 #include "vtkOverlappingAMRLevelIdScalars.h"
00026 
00027 class VTKFILTERSGENERAL_EXPORT vtkLevelIdScalars :
00028   public vtkOverlappingAMRLevelIdScalars
00029 {
00030   public:
00031     static vtkLevelIdScalars* New();
00032     vtkTypeMacro(vtkLevelIdScalars,vtkOverlappingAMRLevelIdScalars);
00033     void PrintSelf(ostream& os, vtkIndent indent);
00034 
00035   protected:
00036     vtkLevelIdScalars();
00037     virtual ~vtkLevelIdScalars();
00038 
00039   private:
00040     vtkLevelIdScalars(const vtkLevelIdScalars&); // Not implemented
00041     void operator=(const vtkLevelIdScalars&); // Not implemented
00042 };
00043 
00044 #endif /* VTKLEVELIDSCALARS_H_ */