| 73 | public: |
| 74 | |
| 75 | PackedGroceries() { |
| 76 | price = 0.0; |
| 77 | quantity = 0; |
| 78 | quantity_purchased = 0; |
| 79 | } |
| 80 | |
| 81 | PackedGroceries(string name, string UIC, double price, int quantity, int quantity_purchased) : Item(name, UIC) { |
| 82 | this->price = price; |
nothing calls this directly
no outgoing calls
no test coverage detected