dox/Rendering/vtkScaledTextActor.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00031
#ifndef __vtkScaledTextActor_h
00032
#define __vtkScaledTextActor_h
00033
00034
#include "vtkTextActor.h"
00035
00036 class VTK_RENDERING_EXPORT vtkScaledTextActor :
public vtkTextActor
00037 {
00038
public:
00039 vtkTypeRevisionMacro(vtkScaledTextActor,
vtkTextActor);
00040
virtual void PrintSelf(ostream& os,
vtkIndent indent);
00041
00044
static vtkScaledTextActor *
New();
00045
00046
protected:
00047 vtkScaledTextActor();
00048
private:
00049 vtkScaledTextActor(
const vtkScaledTextActor&);
00050
void operator=(
const vtkScaledTextActor&);
00051 };
00052
00053
00054
#endif
00055