| 17 | Uuid::Uuid(String const& hex) : Uuid(hexDecode(hex)) {} |
| 18 | |
| 19 | char const* Uuid::ptr() const { |
| 20 | return m_data.ptr(); |
| 21 | } |
| 22 | |
| 23 | ByteArray Uuid::bytes() const { |
| 24 | return ByteArray(m_data.ptr(), UuidSize); |
no outgoing calls
no test coverage detected