VTK
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
dox
IO
Export
vtkOOGLExporter.h
Go to the documentation of this file.
1
/*=========================================================================
2
3
Program: Visualization Toolkit
4
Module: vtkOOGLExporter.h
5
6
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7
All rights reserved.
8
See Copyright.txt or http://www.kitware.com/Copyright.htm 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
=========================================================================*/
15
29
#ifndef __vtkOOGLExporter_h
30
#define __vtkOOGLExporter_h
31
32
#include "vtkIOExportModule.h"
// For export macro
33
#include "
vtkExporter.h
"
34
35
class
vtkLight
;
36
class
vtkActor
;
37
38
class
VTKIOEXPORT_EXPORT
vtkOOGLExporter
:
public
vtkExporter
39
{
40
public
:
41
static
vtkOOGLExporter
*
New
();
42
vtkTypeMacro(
vtkOOGLExporter
,
vtkExporter
);
43
void
PrintSelf
(ostream& os,
vtkIndent
indent);
44
46
47
vtkSetStringMacro(FileName);
48
vtkGetStringMacro
(FileName);
50
51
protected
:
52
vtkOOGLExporter
();
53
~
vtkOOGLExporter
();
54
55
void
WriteData
();
56
void
WriteALight(
vtkLight
*aLight, FILE *fp);
57
void
WriteAnActor(
vtkActor
*anActor, FILE *fp,
int
count);
58
char
*
FileName
;
59
60
private
:
61
vtkOOGLExporter
(
const
vtkOOGLExporter
&);
// Not implemented
62
void
operator=(
const
vtkOOGLExporter
&);
// Not implemented
63
};
64
65
#endif
66
Generated on Thu May 24 2012 22:22:29 for VTK by
1.8.1