| 6 | namespace ftg { |
| 7 | |
| 8 | class ParamNumberAnalysisReport : public AnalyzerReport { |
| 9 | |
| 10 | public: |
| 11 | ParamNumberAnalysisReport(); |
| 12 | ParamNumberAnalysisReport(const ParamNumberAnalysisReport &Report); |
| 13 | const std::string getReportType() const override; |
| 14 | Json::Value toJson() const override; |
| 15 | bool fromJson(Json::Value Report) override; |
| 16 | void add(std::string FuncName, unsigned ParamNum, unsigned BeginIndex); |
| 17 | const std::map<std::string, unsigned> &getParamBeginMap() const; |
| 18 | const std::map<std::string, unsigned> &getParamSizeMap() const; |
| 19 | |
| 20 | private: |
| 21 | std::map<std::string, unsigned> ParamBeginMap; |
| 22 | std::map<std::string, unsigned> ParamSizeMap; |
| 23 | }; |
| 24 | |
| 25 | } // namespace ftg |
| 26 |
no outgoing calls
no test coverage detected