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 =========================================================================*/
25 #ifndef vtkSMCSVExporterProxy_h
26 #define vtkSMCSVExporterProxy_h
27 
28 #include "vtkRemotingExportModule.h" //needed for exports
29 #include "vtkSMExporterProxy.h"
30 
31 class VTKREMOTINGEXPORT_EXPORT vtkSMCSVExporterProxy : public vtkSMExporterProxy
32 {
33 public:
34  static vtkSMCSVExporterProxy* New();
36  void PrintSelf(ostream& os, vtkIndent indent) override;
37 
41  void Write() override;
42 
47  bool CanExport(vtkSMProxy*) override;
48 
49 protected:
51  ~vtkSMCSVExporterProxy() override;
52 
53 private:
55  void operator=(const vtkSMCSVExporterProxy&) = delete;
56 };
57 
58 #endif
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