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

Method Person

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

Constructor for Person class

Source from the content-addressed store, hash-verified

20public:
21 // Constructor for Person class
22 Person(string name, string tell) {
23 this->name = name;
24 this->tell = tell;
25 }
26
27 // pure virtual function 'Display'
28 virtual void Display() = 0;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected