| 318 | } |
| 319 | |
| 320 | bool LibraryManager::CanShowError() |
| 321 | { |
| 322 | if (EoCClient == nullptr |
| 323 | || *EoCClient == nullptr |
| 324 | || (*EoCClient)->State == nullptr |
| 325 | || *(*EoCClient)->State == nullptr |
| 326 | || EoCClientHandleError == nullptr) { |
| 327 | return false; |
| 328 | } |
| 329 | |
| 330 | auto state = (*(*EoCClient)->State)->State; |
| 331 | return state == 19 |
| 332 | || state == 17 |
| 333 | || state == 28 |
| 334 | || state == 7 |
| 335 | || state == 30; |
| 336 | } |
| 337 | |
| 338 | class WriteAnchor |
| 339 | { |
nothing calls this directly
no outgoing calls
no test coverage detected