| 420 | } |
| 421 | |
| 422 | bool UUID::fromString( const char* str ) |
| 423 | { |
| 424 | if( parse_token( str, ( xuuid_t* ) this ) != 0 ) |
| 425 | { |
| 426 | dMemset( this, 0, sizeof( UUID ) ); |
| 427 | return false; |
| 428 | } |
| 429 | |
| 430 | return true; |
| 431 | } |
| 432 | |
| 433 | U32 UUID::getHash() const |
| 434 | { |
no test coverage detected