| 1 | #include "HistogramLiveStatistics.h" |
| 2 | |
| 3 | bool HistogramLiveStatistics::isDataAvailable() const |
| 4 | { |
| 5 | return _lastHistogramData.has_value(); |
| 6 | } |
| 7 | |
| 8 | std::optional<HistogramData> const& HistogramLiveStatistics::getData() const |
| 9 | { |
nothing calls this directly
no outgoing calls
no test coverage detected