inputing the data for ID and name
| 24 | public: |
| 25 | // inputing the data for ID and name |
| 26 | void input() { |
| 27 | cout << "Enter ID of the city: "; |
| 28 | cin >> cityID; |
| 29 | cout << "Enter Name of the city: "; |
| 30 | cin >> cityName; |
| 31 | } |
| 32 | |
| 33 | int getCityID() { |
| 34 | return cityID; |
nothing calls this directly
no outgoing calls
no test coverage detected