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

vtkOpenGLActor.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkOpenGLActor.h,v $
00005   Language:  C++
00006 
00007   Copyright (c) 1993-2002 Ken Martin, Will Schroeder, Bill Lorensen 
00008   All rights reserved.
00009   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00010 
00011      This software is distributed WITHOUT ANY WARRANTY; without even 
00012      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
00013      PURPOSE.  See the above copyright notice for more information.
00014 
00015 =========================================================================*/
00026 #ifndef __vtkOpenGLActor_h
00027 #define __vtkOpenGLActor_h
00028 
00029 #include "vtkActor.h"
00030 
00031 class vtkOpenGLRenderer;
00032 
00033 class VTK_RENDERING_EXPORT vtkOpenGLActor : public vtkActor
00034 {
00035 protected:
00036   
00037 public:
00038   static vtkOpenGLActor *New();
00039   vtkTypeRevisionMacro(vtkOpenGLActor,vtkActor);
00040   virtual void PrintSelf(ostream& os, vtkIndent indent);
00041 
00043   void Render(vtkRenderer *ren, vtkMapper *mapper);
00044   
00045 protected:
00046   vtkOpenGLActor() {};
00047   ~vtkOpenGLActor() {};
00048 
00049 private:
00050   vtkOpenGLActor(const vtkOpenGLActor&);  // Not implemented.
00051   void operator=(const vtkOpenGLActor&);  // Not implemented.
00052 };
00053 
00054 #endif
00055