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

vtkTreeCompositer.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkTreeCompositer.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 =========================================================================*/
00015 
00016 // This software and ancillary information known as vtk_ext (and
00017 // herein called "SOFTWARE") is made available under the terms
00018 // described below.  The SOFTWARE has been approved for release with
00019 // associated LA_CC Number 99-44, granted by Los Alamos National
00020 // Laboratory in July 1999.
00021 //
00022 // Unless otherwise indicated, this SOFTWARE has been authored by an
00023 // employee or employees of the University of California, operator of
00024 // the Los Alamos National Laboratory under Contract No. W-7405-ENG-36
00025 // with the United States Department of Energy.
00026 //
00027 // The United States Government has rights to use, reproduce, and
00028 // distribute this SOFTWARE.  The public may copy, distribute, prepare
00029 // derivative works and publicly display this SOFTWARE without charge,
00030 // provided that this Notice and any statement of authorship are
00031 // reproduced on all copies.
00032 //
00033 // Neither the U. S. Government, the University of California, nor the
00034 // Advanced Computing Laboratory makes any warranty, either express or
00035 // implied, nor assumes any liability or responsibility for the use of
00036 // this SOFTWARE.
00037 //
00038 // If SOFTWARE is modified to produce derivative works, such modified
00039 // SOFTWARE should be clearly marked, so as not to confuse it with the
00040 // version available from Los Alamos National Laboratory.
00041 
00042 
00066 #ifndef __vtkTreeCompositer_h
00067 #define __vtkTreeCompositer_h
00068 
00069 #include "vtkCompositer.h"
00070 
00071 
00072 class VTK_PARALLEL_EXPORT vtkTreeCompositer : public vtkCompositer
00073 {
00074 public:
00075   static vtkTreeCompositer *New();
00076   vtkTypeRevisionMacro(vtkTreeCompositer,vtkCompositer);
00077   void PrintSelf(ostream& os, vtkIndent indent);
00078 
00079   virtual void CompositeBuffer(vtkDataArray *pBuf, vtkFloatArray *zBuf,
00080                                vtkDataArray *pTmp, vtkFloatArray *zTmp);
00081 
00082 protected:
00083   vtkTreeCompositer();
00084   ~vtkTreeCompositer();
00085 
00086 private:
00087   vtkTreeCompositer(const vtkTreeCompositer&); // Not implemented
00088   void operator=(const vtkTreeCompositer&); // Not implemented
00089 };
00090 
00091 #endif