MCPcopy Create free account
hub / github.com/Rustam-Z/cpp-programming / User

Method User

Project_E-Commerce_App_V2.0/Person.h:51–56  ·  view source on GitHub ↗

Constructor for User's sign up

Source from the content-addressed store, hash-verified

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;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected