more input stubs

This commit is contained in:
Jack Andersen
2015-04-19 12:52:45 -10:00
parent e7368bfa04
commit bbc3e87844
17 changed files with 82 additions and 19 deletions

View File

@@ -0,0 +1,13 @@
#ifndef CDEVICEBASE
#define CDEVICEBASE
#include "CDeviceToken.hpp"
class CDeviceBase
{
public:
};
#endif // CDEVICEBASE

View File

@@ -0,0 +1,22 @@
#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