VTK
dox/Rendering/Parallel/vtkClientServerSynchronizedRenderers.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile$
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 =========================================================================*/
00021 #ifndef __vtkClientServerSynchronizedRenderers_h
00022 #define __vtkClientServerSynchronizedRenderers_h
00023 
00024 #include "vtkRenderingParallelModule.h" // For export macro
00025 #include "vtkSynchronizedRenderers.h"
00026 
00027 class VTKRENDERINGPARALLEL_EXPORT vtkClientServerSynchronizedRenderers :
00028   public vtkSynchronizedRenderers
00029 {
00030 public:
00031   static vtkClientServerSynchronizedRenderers* New();
00032   vtkTypeMacro(vtkClientServerSynchronizedRenderers, vtkSynchronizedRenderers);
00033   void PrintSelf(ostream& os, vtkIndent indent);
00034 
00035 //BTX
00036 protected:
00037   vtkClientServerSynchronizedRenderers();
00038   ~vtkClientServerSynchronizedRenderers();
00039 
00040   virtual void MasterEndRender();
00041   virtual void SlaveEndRender();
00042 
00043 private:
00044   vtkClientServerSynchronizedRenderers(const vtkClientServerSynchronizedRenderers&); // Not implemented.
00045   void operator=(const vtkClientServerSynchronizedRenderers&); // Not implemented.
00046 //ETX
00047 };
00048 
00049 #endif