vtkSMDataDeliveryManagerProxy.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: $RCSfile$
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 =========================================================================*/
31 #ifndef vtkSMDataDeliveryManagerProxy_h
32 #define vtkSMDataDeliveryManagerProxy_h
33 
34 #include "vtkRemotingViewsModule.h" //needed for exports
35 #include "vtkSMProxy.h"
36 #include "vtkWeakPointer.h" // needed for iVars
37 
38 #include <map> // for std::map
39 
40 class vtkSMViewProxy;
42 {
43 public:
46  void PrintSelf(ostream& os, vtkIndent indent) override;
47 
51  void SetViewProxy(vtkSMViewProxy*);
52 
58  void Deliver(bool interactive);
59 
65  bool DeliverStreamedPieces();
66 
67 protected:
70 
72  std::map<int, vtkTimeStamp> DeliveryTimestamps;
73  std::map<int, vtkTimeStamp> DeliveryTimestampsLOD;
74 
75 private:
77  void operator=(const vtkSMDataDeliveryManagerProxy&) = delete;
78 };
79 
80 #endif
std::map< int, vtkTimeStamp > DeliveryTimestampsLOD
std::map< int, vtkTimeStamp > DeliveryTimestamps
#define VTKREMOTINGVIEWS_EXPORT
void PrintSelf(ostream &os, vtkIndent indent) override
Superclass for all view proxies.
static vtkSMProxy * New()
proxy for a VTK object(s) on a server
Definition: vtkSMProxy.h:152
server-manager class for vtkPVDataDeliveryManager.
void operator=(const vtkSMProxy &)=delete
vtkWeakPointer< vtkSMViewProxy > ViewProxy