12345678910111213141516
//lets say we have these functions: void RoadReadData() {} void newRoad() {} // what the differnce between these two cases: 1- void newRoad(){ newRoad->RoadReadData(); } 2- void newRoad() { RoadReadData(*newRoad); }
newRoad