Main Page | Directories | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

vtkLogLookupTable.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkLogLookupTable.h,v $
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 =========================================================================*/
00040 #ifndef __vtkLogLookupTable_h
00041 #define __vtkLogLookupTable_h
00042 
00043 #include "vtkLookupTable.h"
00044 
00045 class VTK_COMMON_EXPORT vtkLogLookupTable : public vtkLookupTable
00046 {
00047 public:
00048   static vtkLogLookupTable *New();
00049 
00050   vtkTypeRevisionMacro(vtkLogLookupTable,vtkLookupTable);
00051   void PrintSelf(ostream& os, vtkIndent indent);
00052 
00053 protected:
00054   vtkLogLookupTable(int sze=256, int ext=256);
00055   ~vtkLogLookupTable() {};
00056 private:
00057   vtkLogLookupTable(const vtkLogLookupTable&);  // Not implemented.
00058   void operator=(const vtkLogLookupTable&);  // Not implemented.
00059 };
00060 
00061 #endif