MCPcopy Create free account
hub / github.com/Rustam-Z/cpp-programming / PackedGroceries

Method PackedGroceries

Lab_21/e-commerce.cpp:75–79  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

73public:
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;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected