Constructor for Security class
| 39 | public: |
| 40 | // Constructor for Security class |
| 41 | Security(string name, string tell, string login, string password) : Person(name, tell) { |
| 42 | this->login = login; |
| 43 | this->password = password; |
| 44 | } |
| 45 | }; |
| 46 | |
| 47 |
nothing calls this directly
no outgoing calls
no test coverage detected