Guest User

Untitled

a guest
May 25th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. City::operator+ (const City& oneCity, const City& twoCity)
  2. {
  3. City returnThis = new City(parameters);
  4. returnThis.name = oneCity.name + "-" + twoCity.name;
  5. }
Add Comment
Please, Sign In to add comment