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

vtkMesaPolyDataMapper2D.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkMesaPolyDataMapper2D.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 =========================================================================*/
00038 #ifndef __vtkMesaPolyDataMapper2D_h
00039 #define __vtkMesaPolyDataMapper2D_h
00040 
00041 #include "vtkPolyDataMapper2D.h"
00042 
00043 class VTK_RENDERING_EXPORT vtkMesaPolyDataMapper2D : public vtkPolyDataMapper2D
00044 {
00045 public:
00046   vtkTypeRevisionMacro(vtkMesaPolyDataMapper2D,vtkPolyDataMapper2D);
00047   static vtkMesaPolyDataMapper2D *New();
00048   virtual void PrintSelf(ostream& os, vtkIndent indent);
00049 
00051   void RenderOverlay(vtkViewport* viewport, vtkActor2D* actor);
00052 
00053 protected:
00054   vtkMesaPolyDataMapper2D() {};
00055   ~vtkMesaPolyDataMapper2D() {};
00056   
00057 private:
00058   vtkMesaPolyDataMapper2D(const vtkMesaPolyDataMapper2D&);  // Not implemented.
00059   void operator=(const vtkMesaPolyDataMapper2D&);  // Not implemented.
00060 };
00061 
00062 
00063 #endif
00064