mirror of
https://github.com/AxioDL/boo.git
synced 2025-05-16 12:21:25 +00:00
14 lines
217 B
C++
14 lines
217 B
C++
#ifndef IHIDDEVICE_HPP
|
|
#define IHIDDEVICE_HPP
|
|
|
|
#include "inputdev/CDeviceToken.hpp"
|
|
class CDeviceBase;
|
|
|
|
class IHIDDevice
|
|
{
|
|
friend CDeviceBase;
|
|
virtual void deviceDisconnected()=0;
|
|
};
|
|
|
|
#endif // IHIDDEVICE_HPP
|