-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathvtkInteractionDevice.cxx
35 lines (24 loc) · 1.1 KB
/
vtkInteractionDevice.cxx
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
/*=========================================================================
Name: vtkInteractionDevice.cxx
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.
=========================================================================*/
#include "vtkInteractionDevice.h"
vtkCxxRevisionMacro(vtkInteractionDevice, "$Revision: 1.0 $");
//----------------------------------------------------------------------------
vtkInteractionDevice::vtkInteractionDevice()
{
}
//----------------------------------------------------------------------------
vtkInteractionDevice::~vtkInteractionDevice()
{
}
//----------------------------------------------------------------------------
void vtkInteractionDevice::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os,indent);
}