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