Common/vtkLogLookupTable.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00044 #ifndef __vtkLogLookupTable_h
00045 #define __vtkLogLookupTable_h
00046
00047 #include "vtkLookupTable.h"
00048
00049 class VTK_COMMON_EXPORT vtkLogLookupTable : public vtkLookupTable
00050 {
00051 public:
00052 static vtkLogLookupTable *New();
00053
00054 vtkTypeRevisionMacro(vtkLogLookupTable,vtkLookupTable);
00055 void PrintSelf(ostream& os, vtkIndent indent);
00056
00057 protected:
00058 vtkLogLookupTable(int sze=256, int ext=256);
00059 ~vtkLogLookupTable() {};
00060 private:
00061 vtkLogLookupTable(const vtkLogLookupTable&);
00062 void operator=(const vtkLogLookupTable&);
00063 };
00064
00065 #endif