| 7 | GenLoader::GenLoader() = default; |
| 8 | |
| 9 | bool GenLoader::load(std::string TargetReportDir, std::string UTReportPath) { |
| 10 | if (!loadTarget(TargetReportDir)) |
| 11 | return false; |
| 12 | return loadUT(UTReportPath); |
| 13 | } |
| 14 | |
| 15 | const DirectionAnalysisReport &GenLoader::getDirectionReport() const { |
| 16 | return DirectionReport; |