ParaView
vtkPVCacheKeeperPipeline.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: vtkPVCacheKeeperPipeline.h
5 
6  Copyright (c) Kitware, Inc.
7  All rights reserved.
8  See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
21 #ifndef vtkPVCacheKeeperPipeline_h
22 #define vtkPVCacheKeeperPipeline_h
23 
24 #include "vtkCompositeDataPipeline.h"
25 #include "vtkPVClientServerCoreRenderingModule.h" //needed for exports
26 
27 class vtkPVCacheKeeper;
28 class VTKPVCLIENTSERVERCORERENDERING_EXPORT vtkPVCacheKeeperPipeline
29  : public vtkCompositeDataPipeline
30 {
31 public:
32  static vtkPVCacheKeeperPipeline* New();
33  vtkTypeMacro(vtkPVCacheKeeperPipeline, vtkCompositeDataPipeline);
34  void PrintSelf(ostream& os, vtkIndent indent);
35 
36 protected:
39 
40  virtual int ForwardUpstream(int i, int j, vtkInformation* request);
41  virtual int ForwardUpstream(vtkInformation* request);
42 
43 private:
44  vtkPVCacheKeeperPipeline(const vtkPVCacheKeeperPipeline&) VTK_DELETE_FUNCTION;
45  void operator=(const vtkPVCacheKeeperPipeline&) VTK_DELETE_FUNCTION;
46 };
47 
48 #endif
manages data cache for flip book animations.