Advertisement
Guest User

7.10.1

a guest
Nov 30th, 2015
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. FamilyVacation FamilyVacation::operator+(int rhs)
  2. {
  3. FamilyVacation newVac;
  4. newVac.numDays = numDays + rhs;
  5. newVac.numPeople = numPeople;
  6. return newVac;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement