Constructor for User's sign up
| 85 | public: |
| 86 | // Constructor for User's sign up |
| 87 | Owner(string name, string tell, string login, string password) : Security(name, tell, login, password) { } |
| 88 | // get Name of User |
| 89 | string getName() { |
| 90 | return name; |
nothing calls this directly
no outgoing calls
no test coverage detected