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

Method Person

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

Constructor for Person class

Source from the content-addressed store, hash-verified

17public:
18 // Constructor for Person class
19 Person(string name, string tell) {
20 this->name = name; this->tell = tell;
21 }
22
23 virtual void Display() = 0;
24};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected