| 24 | cin >> price; |
| 25 | } |
| 26 | void showdata() |
| 27 | { |
| 28 | cout << " Book title: '" << title << "'" << endl; |
| 29 | cout << " Price: " << price << "$" << endl; |
| 30 | } |
| 31 | }; |
| 32 | |
| 33 | class Book : public Publication |
nothing calls this directly
no outgoing calls
no test coverage detected