| 56 | } |
| 57 | |
| 58 | std::vector<std::string> |
| 59 | SourceAnalysisReport::getIncludedHeaders(std::string SourceName) const { |
| 60 | auto Iter = SourceInfoMap.find(SourceName); |
| 61 | if (Iter == SourceInfoMap.end()) |
| 62 | return {}; |
| 63 | |
| 64 | return Iter->second.IncludedHeaders; |
| 65 | } |
| 66 | |
| 67 | const std::string SourceAnalysisReport::getReportType() const { |
| 68 | return "sourceanalysis"; |