mirror of https://github.com/AxioDL/boo.git
15 lines
325 B
C++
15 lines
325 B
C++
#ifndef CDOLPHINSMASHADAPTER_HPP
|
|
#define CDOLPHINSMASHADAPTER_HPP
|
|
|
|
#include "CDeviceBase.hpp"
|
|
|
|
class CDolphinSmashAdapter final : public CDeviceBase
|
|
{
|
|
void deviceDisconnected();
|
|
public:
|
|
CDolphinSmashAdapter(CDeviceToken* token, IHIDDevice* hidDev);
|
|
~CDolphinSmashAdapter();
|
|
};
|
|
|
|
#endif // CDOLPHINSMASHADAPTER_HPP
|