diff -r e2acfa51664f -r baabcd5cdf8c Hid/HidDevice.cs --- a/Hid/HidDevice.cs Sun Mar 15 20:30:00 2015 +0100 +++ b/Hid/HidDevice.cs Sun Mar 15 20:44:15 2015 +0100 @@ -32,7 +32,7 @@ /// Represent a HID device. /// Rename to RawInputDevice? /// - public class HidDevice: IDisposable + public class Device: IDisposable { /// /// Unique name of that HID device. @@ -74,7 +74,7 @@ /// Class constructor will fetch this object properties from HID sub system. /// /// Device Handle as provided by RAWINPUTHEADER.hDevice, typically accessed as rawinput.header.hDevice - public HidDevice(IntPtr hRawInputDevice) + public Device(IntPtr hRawInputDevice) { //Try construct and rollback if needed try @@ -93,7 +93,7 @@ /// /// Make sure dispose is called even if the user forgot about it. /// - ~HidDevice() + ~Device() { Dispose(); }