| 402 | UUID UUID::smNull; |
| 403 | |
| 404 | void UUID::generate() |
| 405 | { |
| 406 | if( !gUUIDStateInitialized ) |
| 407 | { |
| 408 | create_uuid_state( &gUUIDState ); |
| 409 | gUUIDStateInitialized = true; |
| 410 | } |
| 411 | |
| 412 | create_token( &gUUIDState, ( xuuid_t* ) this ); |
| 413 | } |
| 414 | |
| 415 | String UUID::toString() const |
| 416 | { |
no test coverage detected