| 163 | } |
| 164 | |
| 165 | void input() { |
| 166 | Item::input(); |
| 167 | cout << "Enter the price of a new product: "; |
| 168 | cin >> price; |
| 169 | cout << "Enter the quantity of a new product: "; |
| 170 | cin >> quantity; |
| 171 | } |
| 172 | |
| 173 | }; |
| 174 |
nothing calls this directly
no outgoing calls
no test coverage detected