VTK
vtkVectorText.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkVectorText.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 copyright notice for more information.
13 
14 =========================================================================*/
40 #ifndef vtkVectorText_h
41 #define vtkVectorText_h
42 
43 #include "vtkRenderingFreeTypeModule.h" // For export macro
44 #include "vtkPolyDataAlgorithm.h"
45 
47 {
48 public:
49  static vtkVectorText *New();
51  void PrintSelf(ostream& os, vtkIndent indent);
52 
54 
55  vtkSetStringMacro(Text);
56  vtkGetStringMacro(Text);
58 
59 protected:
60  vtkVectorText();
61  ~vtkVectorText();
62 
64  char *Text;
65 
66 private:
67  vtkVectorText(const vtkVectorText&); // Not implemented.
68  void operator=(const vtkVectorText&); // Not implemented.
69 };
70 
71 #endif
Store vtkAlgorithm input/output information.
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
#define VTKRENDERINGFREETYPE_EXPORT
static vtkPolyDataAlgorithm * New()
void PrintSelf(ostream &os, vtkIndent indent)
Superclass for algorithms that produce only polydata as output.
a simple class to control print indentation
Definition: vtkIndent.h:38
Store zero or more vtkInformation instances.
create polygonal text
Definition: vtkVectorText.h:46