| 42 | |
| 43 | template<class T> |
| 44 | auto makeRecorder(T& records) { |
| 45 | return std::function<void (const QPointF&, const QPointF&)>{[&records](const QPointF& a, const QPointF& b) { |
| 46 | records.push_back({a, b}); |
| 47 | } }; |
| 48 | } |
| 49 | |
| 50 | |
| 51 | } // namespace |
no outgoing calls
no test coverage detected