@brief Notify all those interested what the device token is.
| 123 | |
| 124 | /// @brief Notify all those interested what the device token is. |
| 125 | void notifyToken(OSVR_DeviceTokenObject *dev) { |
| 126 | for (auto interest : m_tokenInterest) { |
| 127 | *interest = dev; |
| 128 | } |
| 129 | for (auto ifaceObj : m_deviceInterfaces) { |
| 130 | ifaceObj->setDeviceToken(*dev); |
| 131 | } |
| 132 | } |
| 133 | |
| 134 | /// @brief Returns a tracker interface through the pointer-pointer. |
| 135 | void |
no test coverage detected