VTK
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
dox
Rendering
vtkTestingInteractor.h
Go to the documentation of this file.
1
/*=========================================================================
2
3
Program: Visualization Toolkit
4
Module: vtkTestingInteractor.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 copyrgight notice for more information.
13
14
=========================================================================*/
29
#ifndef __vtkTestingInteractor_h
30
#define __vtkTestingInteractor_h
31
32
#include "
vtkRenderWindowInteractor.h
"
33
34
//BTX
35
#include <string>
// STL Header; Required for string
36
//ETX
37
38
class
VTK_RENDERING_EXPORT
vtkTestingInteractor
:
public
vtkRenderWindowInteractor
39
{
40
public
:
42
static
vtkTestingInteractor
*
New
();
43
45
46
vtkTypeMacro(
vtkTestingInteractor
,
vtkRenderWindowInteractor
);
47
void
PrintSelf
(ostream& os,
vtkIndent
indent);
49
50
virtual
void
Start
();
51
52
static
int
TestReturnStatus
;
// Return status of the test
53
static
double
ErrorThreshold
;
// Error Threshold
54
static
std::string
ValidBaseline
;
// Name of the Baseline image
55
static
std::string
TempDirectory
;
// Location of Testing/Temporary
56
static
std::string
DataDirectory
;
// Location of VTKData
57
58
protected
:
59
vtkTestingInteractor
() {}
60
61
private
:
62
vtkTestingInteractor
(
const
vtkTestingInteractor
&);
// Not implemented
63
void
operator=(
const
vtkTestingInteractor
&);
// Not implemented
64
65
};
66
67
#endif
Generated on Fri Aug 2 2013 12:20:02 for VTK by
1.8.4