mirror of
https://github.com/AxioDL/boo.git
synced 2025-05-15 11:51:27 +00:00
21 lines
271 B
C++
21 lines
271 B
C++
#ifndef CGENERICPAD_HPP
|
|
#define CGENERICPAD_HPP
|
|
|
|
#include "DeviceBase.hpp"
|
|
|
|
namespace boo
|
|
{
|
|
|
|
class CGenericPad final : public CDeviceBase
|
|
{
|
|
public:
|
|
CGenericPad(CDeviceToken* token);
|
|
~CGenericPad();
|
|
|
|
void deviceDisconnected();
|
|
};
|
|
|
|
}
|
|
|
|
#endif // CGENERICPAD_HPP
|