Constructor for Securoty class
| 33 | |
| 34 | // Constructor for Securoty class |
| 35 | Security(string name, string tell, string login, string password) :Person(name, tell) { |
| 36 | this->login = login; this->password = password; |
| 37 | } |
| 38 | |
| 39 | }; |
| 40 |
nothing calls this directly
no outgoing calls
no test coverage detected