boo/src/inputdev/IHIDDevice.hpp

14 lines
218 B
C++
Raw Normal View History

2015-04-19 20:16:50 +00:00
#ifndef IHIDDEVICE_HPP
#define IHIDDEVICE_HPP
#include "inputdev/CDeviceToken.hpp"
class CDeviceBase;
2015-04-19 22:52:45 +00:00
class IHIDDevice
{
friend CDeviceBase;
2015-04-22 21:48:23 +00:00
virtual void _deviceDisconnected()=0;
2015-04-19 22:52:45 +00:00
};
2015-04-19 20:16:50 +00:00
#endif // IHIDDEVICE_HPP