boo/src/inputdev/CDolphinSmashAdapter.cpp

14 lines
311 B
C++
Raw Normal View History

2015-04-19 22:52:45 +00:00
#include "inputdev/CDolphinSmashAdapter.hpp"
2015-04-22 21:48:23 +00:00
#include <stdio.h>
CDolphinSmashAdapter::CDolphinSmashAdapter(CDeviceToken* token, IHIDDevice* hidDev)
: CDeviceBase(token, hidDev)
{
printf("I've been plugged!!\n");
}
void CDolphinSmashAdapter::deviceDisconnected()
{
2015-04-22 21:48:23 +00:00
printf("I've been unplugged!!\n");
}