| 17 | |
| 18 | public: |
| 19 | void getdata() |
| 20 | { |
| 21 | cout << " Book title: "; |
| 22 | cin >> title; |
| 23 | cout << " Price 'USA $': "; |
| 24 | cin >> price; |
| 25 | } |
| 26 | void showdata() |
| 27 | { |
| 28 | cout << " Book title: '" << title << "'" << endl; |
nothing calls this directly
no outgoing calls
no test coverage detected