| 14 | |
| 15 | namespace ftg { |
| 16 | class Analyzer { |
| 17 | public: |
| 18 | virtual ~Analyzer() = default; |
| 19 | /// Returns pointer of a report instance that contains its analysis result. |
| 20 | /// The report will be derived class of AnalyzerReport. |
| 21 | virtual std::unique_ptr<AnalyzerReport> getReport() = 0; |
| 22 | }; |
| 23 | } // namespace ftg |
| 24 | |
| 25 | #endif // FTG_ANALYZER_H |
nothing calls this directly
no outgoing calls
no test coverage detected