Constructor for User's sign up
| 49 | |
| 50 | // Constructor for User's sign up |
| 51 | User(string name, string tell, string login, string password) : Security(name, tell, login, password) { |
| 52 | this->name = name; |
| 53 | this->tell = tell; |
| 54 | this->login = login; |
| 55 | this->password = password; |
| 56 | } |
| 57 | // get Name of User |
| 58 | string getName() { |
| 59 | return name; |
nothing calls this directly
no outgoing calls
no test coverage detected