| 49 | }; |
| 50 | |
| 51 | class Circle : public Shape |
| 52 | { |
| 53 | public: |
| 54 | void display_area() |
| 55 | { |
| 56 | cout << "Area of Circle: " << base * base * 3.1415 << endl; |
| 57 | } |
| 58 | }; |
| 59 | |
| 60 | int main() |
| 61 | { |
nothing calls this directly
no outgoing calls
no test coverage detected