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

Method User

Project_E-Commerce_App_V3.0/Person.h:58–63  ·  view source on GitHub ↗

Constructor for User's sign up

Source from the content-addressed store, hash-verified

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() {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected