| 14 | |
| 15 | namespace ftg { |
| 16 | class AnalyzerReport : public JsonSerializable { |
| 17 | public: |
| 18 | virtual ~AnalyzerReport() = default; |
| 19 | virtual const std::string getReportType() const = 0; |
| 20 | virtual Json::Value toJson() const override = 0; |
| 21 | virtual bool fromJson(Json::Value Report) override = 0; |
| 22 | }; |
| 23 | } // namespace ftg |
| 24 | |
| 25 | #endif // FTG_ANALYZERREPORT_H |
nothing calls this directly
no outgoing calls
no test coverage detected