Revision 3a6370bf39d14d68f194f1204ddf42fe2aa329d2 authored by Pierre Guillou on 11 October 2019, 13:16:44 UTC, committed by Pierre Guillou on 13 April 2022, 09:24:25 UTC
1 parent cdaa0c2
vtkSMCSVExporterProxy.h
/*=========================================================================
Program: ParaView
Module: vtkSMCSVExporterProxy.h
Copyright (c) Kitware, Inc.
All rights reserved.
See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/**
* @class vtkSMCSVExporterProxy
* @brief exporter used to export the spreadsheet view
* and supported chart views as to a CSV file.
*
* vtkSMCSVExporterProxy is used to export the certain views to a CSV file.
* Currently, we support vtkSpreadSheetView and vtkPVXYChartView (which includes
* Bar/Line/Quartile/Parallel Coordinates views).
*
* @sa vtkCSVExporter
*/
#ifndef vtkSMCSVExporterProxy_h
#define vtkSMCSVExporterProxy_h
#include "vtkRemotingExportModule.h" //needed for exports
#include "vtkSMExporterProxy.h"
class VTKREMOTINGEXPORT_EXPORT vtkSMCSVExporterProxy : public vtkSMExporterProxy
{
public:
static vtkSMCSVExporterProxy* New();
vtkTypeMacro(vtkSMCSVExporterProxy, vtkSMExporterProxy);
void PrintSelf(ostream& os, vtkIndent indent) override;
/**
* Exports the view.
*/
void Write() override;
/**
* Returns if the view can be exported.
* Default implementation return true if the view is a render view.
*/
bool CanExport(vtkSMProxy*) override;
protected:
vtkSMCSVExporterProxy();
~vtkSMCSVExporterProxy() override;
private:
vtkSMCSVExporterProxy(const vtkSMCSVExporterProxy&) = delete;
void operator=(const vtkSMCSVExporterProxy&) = delete;
};
#endif

Computing file changes ...