mirror of https://github.com/AxioDL/boo.git
18 lines
349 B
C++
18 lines
349 B
C++
#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)
|
|
{
|
|
|
|
}
|
|
};
|
|
|
|
#endif // CDOLPHINSMASHADAPTER_HPP
|