Advertisement
Guest User

Untitled

a guest
Sep 16th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. #include "PersonModel.hpp"
  2.  
  3. Person::Person(){
  4. Person::FirstName = "";
  5. Person::LastName = "";
  6. Person::YearOfBirth = 0;
  7. }
  8. Person::Person(string fName, string lName, int yob)
  9. {
  10. Person::FirstName = fName;
  11. Person::LastName = lName;
  12. Person::YearOfBirth = yob;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement