////////////////////////////////////////////////////////////////////////// ReadReport //////////////////////////////////////////////////////////////////////////
| 426 | // ReadReport |
| 427 | /////////////////////////////////////////////////////////////////////////////// |
| 428 | void cTWUtil::ReadReport(const TCHAR* reportFileName, |
| 429 | cFCOReportHeader& reportHeader, |
| 430 | cFCOReport& r, |
| 431 | const cElGamalSigPublicKey* pPublicKey, |
| 432 | bool silent, |
| 433 | bool& bEncrypted) |
| 434 | { |
| 435 | iUserNotify::GetInstance()->Notify(iUserNotify::V_VERBOSE, |
| 436 | _T("%s%s\n"), |
| 437 | TSS_GetString(cTW, tw::STR_OPEN_REPORT_FILE).c_str(), |
| 438 | cDisplayEncoder::EncodeInline(reportFileName).c_str()); |
| 439 | |
| 440 | ReadObject(reportFileName, &reportHeader, r, cFCOReport::GetFileHeaderID(), pPublicKey, bEncrypted); |
| 441 | } |
| 442 | |
| 443 | |
| 444 | /////////////////////////////////////////////////////////////////////////////// |
nothing calls this directly
no test coverage detected