vtkLogLookupTable.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
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&);
00058 void operator=(const vtkLogLookupTable&);
00059 };
00060
00061 #endif