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

Method Records

Lab_11/Source.cpp:40–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

38
39public:
40 Records()
41 {
42 name = "Rustam";
43 salary = 1234;
44 date_of_birth = "12.34.5678";
45 }
46 Records(string name1, float salary1, string date_of_birth1)
47 {
48 name = name1;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected