boo/include/inputdev/CDeviceToken.hpp

23 lines
328 B
C++
Raw Normal View History

2015-04-19 22:52:45 +00:00
#ifndef CDEVICETOKEN
#define CDEVICETOKEN
#include <string>
#include <IOKit/hid/IOHIDDevice.h>
class CDeviceBase;
class CDeviceToken
{
std::string m_name;
#if __APPLE__
#elif _WIN32
#elif __linux__
#endif
public:
const std::string& getName() const;
CDeviceBase* getDevice() const;
};
#endif // CDEVICETOKEN