| 25 | string UIC; |
| 26 | public: |
| 27 | Item() { // default constructor |
| 28 | name = "Unknown"; |
| 29 | UIC = "Unknown"; |
| 30 | } |
| 31 | |
| 32 | Item(string name, string UIC) { // parametirized constructor |
| 33 | this->name = name; |
nothing calls this directly
no outgoing calls
no test coverage detected