Files
ThirdParty-6/ParaView-5.0.1/VTK/Web/WebGLExporter/vtkPVWebGLExporter.h

47 lines
1.3 KiB
C++

/*=========================================================================
Program: Visualization Toolkit
Module: vtkPVWebGLExporter.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm 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.
=========================================================================*/
#ifndef vtkPVWebGLExporter_h
#define vtkPVWebGLExporter_h
#include "vtkExporter.h"
#include "vtkWebGLExporterModule.h" // needed for export macro
class VTKWEBGLEXPORTER_EXPORT vtkPVWebGLExporter : public vtkExporter
{
public:
static vtkPVWebGLExporter *New();
vtkTypeMacro(vtkPVWebGLExporter,vtkExporter);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Specify the name of the VRML file to write.
vtkSetStringMacro(FileName);
vtkGetStringMacro(FileName);
protected:
vtkPVWebGLExporter();
~vtkPVWebGLExporter();
void WriteData();
char *FileName;
private:
vtkPVWebGLExporter(const vtkPVWebGLExporter&); // Not implemented.
void operator=(const vtkPVWebGLExporter&); // Not implemented.
};
#endif