| 110 | bool isNew() { return( status == Status_New ); } |
| 111 | bool isQuerying() { return( status.test( Status_Querying ) ); } |
| 112 | bool isUpdating() { return( status.test( Status_Updating ) ); } |
| 113 | bool hasResponded() { return( status.test( Status_Responded ) ); } |
| 114 | bool isTimedOut() { return( status.test( Status_TimedOut ) ); } |
| 115 |
no test coverage detected