vtkSMDataExtractWriterProxy.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: vtkSMDataExtractWriterProxy.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 =========================================================================*/
24 #ifndef vtkSMDataExtractWriterProxy_h
25 #define vtkSMDataExtractWriterProxy_h
26 
28 
30 {
31 public:
34  void PrintSelf(ostream& os, vtkIndent indent) override;
35 
37 
40  bool Write(vtkSMExtractsController* extractor) override;
41  bool CanExtract(vtkSMProxy* proxy) override;
42  bool IsExtracting(vtkSMProxy* proxy) override;
43  void SetInput(vtkSMProxy* proxy) override;
44  vtkSMProxy* GetInput() override;
46 
47 protected:
49  ~vtkSMDataExtractWriterProxy() override;
50 
51 private:
53  void operator=(const vtkSMDataExtractWriterProxy&) = delete;
54 };
55 
56 #endif
void PrintSelf(ostream &os, vtkIndent indent) override
#define VTKREMOTINGSERVERMANAGER_EXPORT
abstract class defining extract writer proxy API
virtual vtkSMProxy * GetInput()=0
This is convenience method that gets called by vtkSMExtractsController to set the extract writer to e...
virtual bool IsExtracting(vtkSMProxy *proxy)=0
Returns true this extract writer proxy is generating and extract from the provided proxy...
extract writers to write datasets
static vtkSMProxy * New()
proxy for a VTK object(s) on a server
Definition: vtkSMProxy.h:152
virtual void SetInput(vtkSMProxy *proxy)=0
This is convenience method that gets called by vtkSMExtractsController to set the extract writer to e...
virtual bool Write(vtkSMExtractsController *extractor)=0
Generate the extract.
controller for extract generation
virtual bool CanExtract(vtkSMProxy *proxy)=0
Returns true if the provided proxy can be extracted/written by this writer.