VTK
|
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 "vtkSynchronizedRenderers.h" 00025 00026 class VTK_PARALLEL_EXPORT vtkClientServerSynchronizedRenderers : 00027 public vtkSynchronizedRenderers 00028 { 00029 public: 00030 static vtkClientServerSynchronizedRenderers* New(); 00031 vtkTypeMacro(vtkClientServerSynchronizedRenderers, vtkSynchronizedRenderers); 00032 void PrintSelf(ostream& os, vtkIndent indent); 00033 00034 //BTX 00035 protected: 00036 vtkClientServerSynchronizedRenderers(); 00037 ~vtkClientServerSynchronizedRenderers(); 00038 00039 virtual void MasterEndRender(); 00040 virtual void SlaveEndRender(); 00041 00042 private: 00043 vtkClientServerSynchronizedRenderers(const vtkClientServerSynchronizedRenderers&); // Not implemented. 00044 void operator=(const vtkClientServerSynchronizedRenderers&); // Not implemented. 00045 //ETX 00046 }; 00047 00048 #endif