| 61 | cout << "Enter employee code: " ; cin >> code; |
| 62 | } |
| 63 | void showdata_name() { |
| 64 | cout << "Employee name: " << name << endl; |
| 65 | } |
| 66 | void showdata_code() { |
| 67 | cout << "Employee code: " << code << endl; |
| 68 | } |
nothing calls this directly
no outgoing calls
no test coverage detected