| 170 | QList<PlotComponent *> PlotManager::plots() const { return m_plots; } |
| 171 | |
| 172 | void PlotManager::replot() |
| 173 | { |
| 174 | for(PlotComponent *p : qAsConst(m_plots)) { |
| 175 | p->replot(); |
| 176 | } |
| 177 | Q_EMIT newData(); |
| 178 | } |
| 179 | |
| 180 | #include "moc_plotmanager.cpp" |
no outgoing calls
no test coverage detected