| 47 | } |
| 48 | |
| 49 | void printSums(const std::vector<Shape*>& shapes) |
| 50 | { |
| 51 | std::cout << "Sum of areas: " << calculateSumAreas(shapes) << std::endl; |
| 52 | std::cout << "Sum of perimeters: " << calculateSumPerimeters(shapes) << std::endl; |
| 53 | } |
no test coverage detected