| 205 | } |
| 206 | |
| 207 | std::vector<double> GrStatistics::GetRightSpectrum() { |
| 208 | std::vector<double> r; |
| 209 | right_spectrum_.Visit([&](auto& v) { |
| 210 | r.push_back(v); |
| 211 | }); |
| 212 | return r; |
| 213 | } |
| 214 | |
| 215 | std::vector<std::shared_ptr<tcrp::RpMsgWorkingCaptureInfo>> GrStatistics::GetCapturesInfo() { |
| 216 | std::vector<std::shared_ptr<tcrp::RpMsgWorkingCaptureInfo>> r; |
nothing calls this directly
no outgoing calls
no test coverage detected