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

Method getdata_name

Lab_16/Source.cpp:40–44  ·  view source on GitHub ↗

void set_code(string code) { this->code = code; } string get_code() { return code; } void set_name(string name) { this->name = name; } string get_name() { return name; } */

Source from the content-addressed store, hash-verified

38 }
39 */
40 void getdata_name()
41 {
42 cout << " Enter employee name: ";
43 cin >> name;
44 }
45 void getdata_code()
46 {
47 cout << " Enter employee code: ";

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected