vtkVectorText.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00050 #ifndef __vtkVectorText_h
00051 #define __vtkVectorText_h
00052
00053 #include "vtkPolyDataSource.h"
00054
00055 class VTK_HYBRID_EXPORT vtkVectorText : public vtkPolyDataSource
00056 {
00057 public:
00058 static vtkVectorText *New();
00059 vtkTypeRevisionMacro(vtkVectorText,vtkPolyDataSource);
00060 void PrintSelf(ostream& os, vtkIndent indent);
00061
00063
00064 vtkSetStringMacro(Text);
00065 vtkGetStringMacro(Text);
00067
00068 protected:
00069 vtkVectorText();
00070 ~vtkVectorText();
00071
00072 void Execute();
00073 char *Text;
00074 char *Letters[127];
00075
00076 private:
00077 vtkVectorText(const vtkVectorText&);
00078 void operator=(const vtkVectorText&);
00079 };
00080
00081 #endif
00082
00083