dox/Hybrid/vtkVectorText.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00040
#ifndef __vtkVectorText_h
00041
#define __vtkVectorText_h
00042
00043
#include "vtkPolyDataSource.h"
00044
00045 class VTK_HYBRID_EXPORT vtkVectorText :
public vtkPolyDataSource
00046 {
00047
public:
00048
static vtkVectorText *
New();
00049 vtkTypeRevisionMacro(vtkVectorText,
vtkPolyDataSource);
00050
void PrintSelf(ostream& os,
vtkIndent indent);
00051
00053
00054 vtkSetStringMacro(Text);
00055 vtkGetStringMacro(Text);
00057
00058
protected:
00059 vtkVectorText();
00060 ~vtkVectorText();
00061
00062
void Execute();
00063 char *Text;
00064 char *Letters[127];
00065
00066
private:
00067 vtkVectorText(
const vtkVectorText&);
00068
void operator=(
const vtkVectorText&);
00069 };
00070
00071
#endif
00072
00073