Main Page | Directories | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

vtkVectorText.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkVectorText.h,v $
00005 
00006   Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
00007   All rights reserved.
00008   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00009 
00010      This software is distributed WITHOUT ANY WARRANTY; without even
00011      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
00012      PURPOSE.  See the above copyright notice for more information.
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&);  // Not implemented.
00078   void operator=(const vtkVectorText&);  // Not implemented.
00079 };
00080 
00081 #endif
00082 
00083