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