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

Rendering/vtkRendererCollection.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkRendererCollection.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 =========================================================================*/
00030 #ifndef __vtkRendererCollection_h
00031 #define __vtkRendererCollection_h
00032 
00033 #include "vtkCollection.h"
00034 #include "vtkRenderer.h" // Needed for static cast
00035 
00036 class VTK_RENDERING_EXPORT vtkRendererCollection : public vtkCollection
00037 {
00038  public:
00039   static vtkRendererCollection *New();
00040   vtkTypeRevisionMacro(vtkRendererCollection,vtkCollection);
00041   virtual void PrintSelf(ostream& os, vtkIndent indent);
00042 
00044 
00045   void AddItem(vtkRenderer *a) {
00046     this->vtkCollection::AddItem((vtkObject *)a);};
00048   
00050 
00052   vtkRenderer *GetNextItem() {
00053     return static_cast<vtkRenderer *>(this->GetNextItemAsObject());};
00055 
00057   void Render();
00058 
00059 protected:  
00060   vtkRendererCollection() {};
00061   ~vtkRendererCollection() {};
00062 
00063 private:
00064   // hide the standard AddItem from the user and the compiler.
00065   void AddItem(vtkObject *o) { this->vtkCollection::AddItem(o); };
00066 
00067 private:
00068   vtkRendererCollection(const vtkRendererCollection&);  // Not implemented.
00069   void operator=(const vtkRendererCollection&);  // Not implemented.
00070 };
00071 
00072 
00073 #endif