-
Notifications
You must be signed in to change notification settings - Fork 4
/
vtkInteractionDevice.h
62 lines (43 loc) · 1.77 KB
/
vtkInteractionDevice.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*=========================================================================
Name: vtkInteractionDevice.h
Author: David Borland, The Renaissance Computing Institute (RENCI)
Copyright: The Renaissance Computing Institute (RENCI)
License: Licensed under the RENCI Open Source Software License v. 1.0.
See included License.txt or
http://www.renci.org/resources/open-source-software-license
for details.
=========================================================================*/
// .NAME vtkInteractionDevice
// .SECTION Description
// vtkInteractionDevice is an abstract base class for interfacing with
// external devices for interaction. Examples include multi-touch
// interfaces and various devices supported by the Virtual Reality
// Peripheral Network (VRPN: http://www.cs.unc.edu/Research/vrpn/).
// .SECTION see also
// vtkInteractionDeviceManager vtkDeviceInteractorStyle
#ifndef __vtkInteractionDevice_h
#define __vtkInteractionDevice_h
#include "vtkInteractionDeviceConfigure.h"
#include "vtkObject.h"
class VTK_INTERACTIONDEVICE_EXPORT vtkInteractionDevice : public vtkObject
{
public:
vtkTypeRevisionMacro(vtkInteractionDevice,vtkObject);
void PrintSelf(ostream&, vtkIndent);
// Description:
// Initialize the device
virtual int Initialize() = 0;
// Description:
// Receive updates from the device
virtual void Update() = 0;
// Description:
// Invoke the appropriate event for observers to listen for
virtual void InvokeInteractionEvent() = 0;
protected:
vtkInteractionDevice();
~vtkInteractionDevice();
private:
vtkInteractionDevice(const vtkInteractionDevice&); // Not implemented.
void operator=(const vtkInteractionDevice&); // Not implemented.
};
#endif