VTK
dox/Rendering/vtkCompositePolyDataMapper2.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkCompositePolyDataMapper2.h
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 =========================================================================*/
00024 #ifndef __vtkCompositePolyDataMapper2_h
00025 #define __vtkCompositePolyDataMapper2_h
00026 
00027 #include "vtkPainterPolyDataMapper.h"
00028 
00029 class VTK_RENDERING_EXPORT vtkCompositePolyDataMapper2 : public vtkPainterPolyDataMapper
00030 {
00031 public:
00032   static vtkCompositePolyDataMapper2* New();
00033   vtkTypeMacro(vtkCompositePolyDataMapper2, vtkPainterPolyDataMapper);
00034   void PrintSelf(ostream& os, vtkIndent indent);
00035 
00036 //BTX
00037 protected:
00038   vtkCompositePolyDataMapper2();
00039   ~vtkCompositePolyDataMapper2();
00040 
00044   vtkExecutive* CreateDefaultExecutive();
00045 
00047   virtual int FillInputPortInformation(int port, vtkInformation* info);
00048 
00050   virtual void ComputeBounds();
00051 
00053   vtkTimeStamp BoundsMTime;
00054 
00055 private:
00056   vtkCompositePolyDataMapper2(const vtkCompositePolyDataMapper2&); // Not implemented.
00057   void operator=(const vtkCompositePolyDataMapper2&); // Not implemented.
00058 //ETX
00059 };
00060 
00061 #endif
00062 
00063