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

Method Item

Lab_21/e-commerce.cpp:27–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25 string UIC;
26public:
27 Item() { // default constructor
28 name = "Unknown";
29 UIC = "Unknown";
30 }
31
32 Item(string name, string UIC) { // parametirized constructor
33 this->name = name;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected