| 1546 | class DrawPathProvider : public PathProvider { |
| 1547 | public: |
| 1548 | explicit DrawPathProvider(const std::vector<Point>& pts) : points(pts) { |
| 1549 | } |
| 1550 | |
| 1551 | Path getPath() const override { |
| 1552 | if (points.size() < 2) { |
nothing calls this directly
no outgoing calls
no test coverage detected