-
Notifications
You must be signed in to change notification settings - Fork 4
/
vtkVRPNDevice.cxx
42 lines (30 loc) · 1.2 KB
/
vtkVRPNDevice.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
36
37
38
39
40
41
42
/*=========================================================================
Name: vtkVRPNDevice.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 "vtkVRPNDevice.h"
vtkCxxRevisionMacro(vtkVRPNDevice, "$Revision: 1.0 $");
//----------------------------------------------------------------------------
vtkVRPNDevice::vtkVRPNDevice()
{
this->DeviceName = NULL;
}
//----------------------------------------------------------------------------
vtkVRPNDevice::~vtkVRPNDevice()
{
if (this->DeviceName)
{
delete [] this->DeviceName;
}
}
//----------------------------------------------------------------------------
void vtkVRPNDevice::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os,indent);
os << indent << "DeviceName: " << this->DeviceName << "\n";
}