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
vtkPVWebExporter.h
/*=========================================================================
Program: ParaView
Module: vtkPVWebExporter.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 vtkPVWebExporter
* @brief vtkPVWebExporter is used to produce vtkjs export in the ParaView
* application.
*
* vtkPVWebExporter is used to produce scene export for web sharing.
*/
#ifndef vtkPVWebExporter_h
#define vtkPVWebExporter_h
#include "vtkJSONSceneExporter.h"
#include "vtkRemotingExportModule.h" // needed for exports
class VTKREMOTINGEXPORT_EXPORT vtkPVWebExporter : public vtkJSONSceneExporter
{
public:
static vtkPVWebExporter* New();
vtkTypeMacro(vtkPVWebExporter, vtkJSONSceneExporter);
void PrintSelf(ostream& os, vtkIndent indent) override;
//@{
/**
* Specify file name of the ParaViewGlance HTML file to use to embed the data in
*/
vtkSetStringMacro(ParaViewGlanceHTML);
vtkGetStringMacro(ParaViewGlanceHTML);
//@}
protected:
vtkPVWebExporter();
~vtkPVWebExporter() override;
// Decorate method to enable zip bundling
void Write() override;
private:
vtkPVWebExporter(const vtkPVWebExporter&) = delete;
void operator=(const vtkPVWebExporter&) = delete;
char* ParaViewGlanceHTML;
};
#endif

Computing file changes ...