Converting HID API to use be<> auto swapping type.

This commit is contained in:
Ben Vanik
2014-08-19 22:50:21 -07:00
parent 48a0e5c601
commit fb98683ed3
24 changed files with 325 additions and 518 deletions

View File

@@ -9,14 +9,13 @@
#include <xenia/hid/input_driver.h>
namespace xe {
namespace hid {
using namespace xe;
using namespace xe::hid;
InputDriver::InputDriver(InputSystem* input_system)
: input_system_(input_system) {}
InputDriver::~InputDriver() = default;
InputDriver::InputDriver(InputSystem* input_system) :
input_system_(input_system) {
}
InputDriver::~InputDriver() {
}
} // namespace hid
} // namespace xe