00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00026 #ifndef __vtkPVRenderViewProxy_h
00027 #define __vtkPVRenderViewProxy_h
00028
00029 #include "vtkObject.h"
00030
00031 class vtkRenderWindow;
00032
00033 class VTK_EXPORT vtkPVRenderViewProxy : public vtkObject
00034 {
00035 public:
00036 vtkTypeRevisionMacro(vtkPVRenderViewProxy, vtkObject);
00038
00039 virtual void EventuallyRender() = 0;
00040 virtual vtkRenderWindow* GetRenderWindow() = 0;
00041 virtual void Render() = 0;
00043
00044 protected:
00045 vtkPVRenderViewProxy() {};
00046 ~vtkPVRenderViewProxy() {};
00047
00048 private:
00049 vtkPVRenderViewProxy(const vtkPVRenderViewProxy&);
00050 void operator=(const vtkPVRenderViewProxy&);
00051 };
00052
00053 #endif