boo/include/inputdev/CDolphinSmashAdapter.hpp

18 lines
349 B
C++
Raw Normal View History

2015-04-19 20:16:50 +00:00
#ifndef CDOLPHINSMASHADAPTER_HPP
#define CDOLPHINSMASHADAPTER_HPP
#include "CDeviceBase.hpp"
class CDolphinSmashAdapter final : public CDeviceBase
{
void deviceDisconnected();
public:
CDolphinSmashAdapter(CDeviceToken* token, IHIDDevice* hidDev)
: CDeviceBase(token, hidDev)
{
}
};
2015-04-19 20:16:50 +00:00
#endif // CDOLPHINSMASHADAPTER_HPP