// circle_shape.cpp namespace ShapeImpl { double area(const Circle &circle) { double r = circle.radius; return 3.14 * r * r; } } // namespace ShapeImpl