mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
47 lines
1.3 KiB
C++
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
|