| 79 | std::string const &OSVR_DeviceTokenObject::getName() const { return m_name; } |
| 80 | |
| 81 | void OSVR_DeviceTokenObject::sendData(MessageType *type, const char *bytestream, |
| 82 | size_t len) { |
| 83 | osvr::util::time::TimeValue tv; |
| 84 | osvr::util::time::getNow(tv); |
| 85 | m_sendData(tv, type, bytestream, len); |
| 86 | } |
| 87 | void OSVR_DeviceTokenObject::sendData( |
| 88 | osvr::util::time::TimeValue const ×tamp, MessageType *type, |
| 89 | const char *bytestream, size_t len) { |
no test coverage detected