IListUsers implementation
| 125 | |
| 126 | // IListUsers implementation |
| 127 | void list(CheckStatusWrapper* status, IUser* data) |
| 128 | { |
| 129 | try |
| 130 | { |
| 131 | value = data->attributes()->entered() ? data->attributes()->get() : ""; |
| 132 | present = true; |
| 133 | } |
| 134 | catch (const Exception& ex) |
| 135 | { |
| 136 | ex.stuffException(status); |
| 137 | } |
| 138 | } |
| 139 | |
| 140 | string value; |
| 141 | bool present; |
nothing calls this directly
no test coverage detected