| 93 | public: |
| 94 | vtkTypeMacro(vtkEventDataForDevice, vtkEventData); |
| 95 | static vtkEventDataForDevice* New() |
| 96 | { |
| 97 | vtkEventDataForDevice* ret = new vtkEventDataForDevice; |
| 98 | ret->InitializeObjectBase(); |
| 99 | return ret; |
| 100 | } |
| 101 | |
| 102 | vtkEventDataDevice GetDevice() const { return this->Device; } |
| 103 | vtkEventDataDeviceInput GetInput() const { return this->Input; } |
nothing calls this directly
no test coverage detected