Constructor for User's sign up
| 97 | public: |
| 98 | // Constructor for User's sign up |
| 99 | Owner(string name, string tell, string login, string password) : Security(name, tell, login, password) { } |
| 100 | // get Name of User |
| 101 | string getName() { |
| 102 | return name; |
nothing calls this directly
no outgoing calls
no test coverage detected