vtkSMCSVExporterProxy.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: vtkSMCSVExporterProxy.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 =========================================================================*/
27 #ifndef vtkSMCSVExporterProxy_h
28 #define vtkSMCSVExporterProxy_h
29 
30 #include "vtkRemotingExportModule.h" //needed for exports
31 #include "vtkSMExporterProxy.h"
32 
34 {
35 public:
36  static vtkSMCSVExporterProxy* New();
38  void PrintSelf(ostream& os, vtkIndent indent) override;
39 
43  void Write() override;
44 
49  bool CanExport(vtkSMProxy*) override;
50 
51 protected:
53  ~vtkSMCSVExporterProxy() override;
54 
55 private:
57  void operator=(const vtkSMCSVExporterProxy&) = delete;
58 };
59 
60 #endif
#define VTKREMOTINGEXPORT_EXPORT
proxy for view exporters.
virtual bool CanExport(vtkSMProxy *)=0
Returns if the view can be exported.
virtual void Write()=0
Exports the view.
exporter used to export the spreadsheet view and supported chart views as to a CSV file...
static vtkSMProxy * New()
proxy for a VTK object(s) on a server
Definition: vtkSMProxy.h:152
void PrintSelf(ostream &os, vtkIndent indent) override