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; } */
| 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: "; |
nothing calls this directly
no outgoing calls
no test coverage detected