VTK
vtkTDxDevice.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkTDxDevice.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 =========================================================================*/
28 #ifndef __vtkTDxDevice_h
29 #define __vtkTDxDevice_h
30 
31 #include "vtkObject.h"
32 
34 
36 {
37 public:
38  vtkTypeMacro(vtkTDxDevice,vtkObject);
39  void PrintSelf(ostream& os, vtkIndent indent);
40 
42  bool GetInitialized() const;
43 
48  virtual void Close()=0;
49 
52  vtkRenderWindowInteractor *GetInteractor() const;
53 
57  void SetInteractor(vtkRenderWindowInteractor *i);
58 
59 protected:
61  vtkTDxDevice();
62 
66  virtual ~vtkTDxDevice();
67 
70 
71 private:
72  vtkTDxDevice(const vtkTDxDevice&); // Not implemented.
73  void operator=(const vtkTDxDevice&); // Not implemented.
74 };
75 
76 #endif