| 90 | |
| 91 | bool isNew() { return( status == Status_New ); } |
| 92 | bool isQuerying() { return( status.test( Status_Querying ) ); } |
| 93 | bool isUpdating() { return( status.test( Status_Updating ) ); } |
| 94 | bool hasResponded() { return( status.test( Status_Responded ) ); } |
| 95 | bool isTimedOut() { return( status.test( Status_TimedOut ) ); } |
no test coverage detected