VTK
/Users/kitware/Dashboards/MyTests/VTK_BLD_Release_docs/Utilities/Doxygen/dox/Rendering/FreeType/vtkScaledTextActor.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkScaledTextActor.h
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 =========================================================================*/
00028 #ifndef vtkScaledTextActor_h
00029 #define vtkScaledTextActor_h
00030 
00031 #include "vtkRenderingFreeTypeModule.h" // For export macro
00032 #include "vtkTextActor.h"
00033 
00034 class VTKRENDERINGFREETYPE_EXPORT vtkScaledTextActor : public vtkTextActor
00035 {
00036 public:
00037   vtkTypeMacro(vtkScaledTextActor,vtkTextActor);
00038   virtual void PrintSelf(ostream& os, vtkIndent indent);
00039 
00042   static vtkScaledTextActor *New();
00043 
00044 protected:
00045    vtkScaledTextActor();
00046 private:
00047   vtkScaledTextActor(const vtkScaledTextActor&);  // Not implemented.
00048   void operator=(const vtkScaledTextActor&);  // Not implemented.
00049 };
00050 
00051 
00052 #endif
00053