Constructor for User's sign up
| 56 | |
| 57 | // Constructor for User's sign up |
| 58 | User(string name, string tell, string login, string password) : Security(name, tell, login, password) { |
| 59 | this->name = name; |
| 60 | this->tell = tell; |
| 61 | this->login = login; |
| 62 | this->password = password; |
| 63 | } |
| 64 | |
| 65 | // get Name of User |
| 66 | string getName() { |
nothing calls this directly
no outgoing calls
no test coverage detected