| 90 | } |
| 91 | |
| 92 | void input() { |
| 93 | Item::input(); |
| 94 | cout << "Enter the price of a new product: "; |
| 95 | cin >> price; |
| 96 | cout << "Enter the quantity of a new product: "; |
| 97 | cin >> quantity; |
| 98 | } |
| 99 | |
| 100 | void set_quantity(int quantity) { |
| 101 | this->quantity = quantity; |
nothing calls this directly
no outgoing calls
no test coverage detected