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

vtkImageMapToRGBA.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkImageMapToRGBA.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 =========================================================================*/
00042 #ifndef __vtkImageMapToRGBA_h
00043 #define __vtkImageMapToRGBA_h
00044 
00045 
00046 #include "vtkImageMapToColors.h"
00047 
00048 class VTK_IMAGING_EXPORT vtkImageMapToRGBA : public vtkImageMapToColors
00049 {
00050 public:
00051   static vtkImageMapToRGBA *New();
00052   vtkTypeRevisionMacro(vtkImageMapToRGBA,vtkImageMapToColors);
00053 
00054 protected:
00055   vtkImageMapToRGBA() {};
00056   ~vtkImageMapToRGBA() {};
00057 private:
00058   vtkImageMapToRGBA(const vtkImageMapToRGBA&);  // Not implemented.
00059   void operator=(const vtkImageMapToRGBA&);  // Not implemented.
00060 };
00061 
00062 #endif
00063 
00064 
00065 
00066 
00067 
00068 
00069