Added (empty) implementation of JoystickImpl::getIdentification on iOS

This commit is contained in:
Laurent 2014-10-06 22:21:11 +02:00
parent f99035bea1
commit ef6391678e
2 changed files with 16 additions and 0 deletions

View File

@ -89,6 +89,14 @@ public:
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
JoystickCaps getCapabilities() const; JoystickCaps getCapabilities() const;
////////////////////////////////////////////////////////////
/// \brief Get the joystick identification
///
/// \return Joystick identification
///
////////////////////////////////////////////////////////////
Joystick::Identification getIdentification() const;
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \brief Update the joystick and get its new state /// \brief Update the joystick and get its new state
/// ///

View File

@ -77,6 +77,14 @@ JoystickCaps JoystickImpl::getCapabilities() const
} }
////////////////////////////////////////////////////////////
Joystick::Identification JoystickImpl::getIdentification() const
{
// Not implemented
return Joystick::Identification();
}
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
JoystickState JoystickImpl::update() JoystickState JoystickImpl::update()
{ {